1. Packages
  2. Packages
  3. Akeyless Provider
  4. API Docs
  5. DynamicSecretPing
Viewing docs for akeyless 2.0.1
published on Monday, Apr 27, 2026 by akeyless-community
Viewing docs for akeyless 2.0.1
published on Monday, Apr 27, 2026 by akeyless-community

    Ping dynamic secret resource

    Create DynamicSecretPing Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DynamicSecretPing(name: string, args?: DynamicSecretPingArgs, opts?: CustomResourceOptions);
    @overload
    def DynamicSecretPing(resource_name: str,
                          args: Optional[DynamicSecretPingArgs] = None,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def DynamicSecretPing(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          delete_protection: Optional[str] = None,
                          dynamic_secret_ping_id: Optional[str] = None,
                          item_custom_fields: Optional[Mapping[str, str]] = None,
                          name: Optional[str] = None,
                          ping_administrative_port: Optional[str] = None,
                          ping_atm_id: Optional[str] = None,
                          ping_authorization_port: Optional[str] = None,
                          ping_cert_subject_dn: Optional[str] = None,
                          ping_client_authentication_type: Optional[str] = None,
                          ping_enforce_replay_prevention: Optional[str] = None,
                          ping_grant_types: Optional[Sequence[str]] = None,
                          ping_issuer_dn: Optional[str] = None,
                          ping_jwks: Optional[str] = None,
                          ping_jwks_url: Optional[str] = None,
                          ping_password: Optional[str] = None,
                          ping_privileged_user: Optional[str] = None,
                          ping_redirect_uris: Optional[Sequence[str]] = None,
                          ping_restricted_scopes: Optional[Sequence[str]] = None,
                          ping_signing_algo: Optional[str] = None,
                          ping_url: Optional[str] = None,
                          producer_encryption_key_name: Optional[str] = None,
                          tags: Optional[Sequence[str]] = None,
                          target_name: Optional[str] = None,
                          user_ttl: Optional[str] = None)
    func NewDynamicSecretPing(ctx *Context, name string, args *DynamicSecretPingArgs, opts ...ResourceOption) (*DynamicSecretPing, error)
    public DynamicSecretPing(string name, DynamicSecretPingArgs? args = null, CustomResourceOptions? opts = null)
    public DynamicSecretPing(String name, DynamicSecretPingArgs args)
    public DynamicSecretPing(String name, DynamicSecretPingArgs args, CustomResourceOptions options)
    
    type: akeyless:DynamicSecretPing
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DynamicSecretPingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DynamicSecretPingArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DynamicSecretPingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DynamicSecretPingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DynamicSecretPingArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var dynamicSecretPingResource = new Akeyless.DynamicSecretPing("dynamicSecretPingResource", new()
    {
        DeleteProtection = "string",
        DynamicSecretPingId = "string",
        ItemCustomFields = 
        {
            { "string", "string" },
        },
        Name = "string",
        PingAdministrativePort = "string",
        PingAtmId = "string",
        PingAuthorizationPort = "string",
        PingCertSubjectDn = "string",
        PingClientAuthenticationType = "string",
        PingEnforceReplayPrevention = "string",
        PingGrantTypes = new[]
        {
            "string",
        },
        PingIssuerDn = "string",
        PingJwks = "string",
        PingJwksUrl = "string",
        PingPassword = "string",
        PingPrivilegedUser = "string",
        PingRedirectUris = new[]
        {
            "string",
        },
        PingRestrictedScopes = new[]
        {
            "string",
        },
        PingSigningAlgo = "string",
        PingUrl = "string",
        ProducerEncryptionKeyName = "string",
        Tags = new[]
        {
            "string",
        },
        TargetName = "string",
        UserTtl = "string",
    });
    
    example, err := akeyless.NewDynamicSecretPing(ctx, "dynamicSecretPingResource", &akeyless.DynamicSecretPingArgs{
    	DeleteProtection:    pulumi.String("string"),
    	DynamicSecretPingId: pulumi.String("string"),
    	ItemCustomFields: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Name:                         pulumi.String("string"),
    	PingAdministrativePort:       pulumi.String("string"),
    	PingAtmId:                    pulumi.String("string"),
    	PingAuthorizationPort:        pulumi.String("string"),
    	PingCertSubjectDn:            pulumi.String("string"),
    	PingClientAuthenticationType: pulumi.String("string"),
    	PingEnforceReplayPrevention:  pulumi.String("string"),
    	PingGrantTypes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	PingIssuerDn:       pulumi.String("string"),
    	PingJwks:           pulumi.String("string"),
    	PingJwksUrl:        pulumi.String("string"),
    	PingPassword:       pulumi.String("string"),
    	PingPrivilegedUser: pulumi.String("string"),
    	PingRedirectUris: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	PingRestrictedScopes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	PingSigningAlgo:           pulumi.String("string"),
    	PingUrl:                   pulumi.String("string"),
    	ProducerEncryptionKeyName: pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	TargetName: pulumi.String("string"),
    	UserTtl:    pulumi.String("string"),
    })
    
    var dynamicSecretPingResource = new DynamicSecretPing("dynamicSecretPingResource", DynamicSecretPingArgs.builder()
        .deleteProtection("string")
        .dynamicSecretPingId("string")
        .itemCustomFields(Map.of("string", "string"))
        .name("string")
        .pingAdministrativePort("string")
        .pingAtmId("string")
        .pingAuthorizationPort("string")
        .pingCertSubjectDn("string")
        .pingClientAuthenticationType("string")
        .pingEnforceReplayPrevention("string")
        .pingGrantTypes("string")
        .pingIssuerDn("string")
        .pingJwks("string")
        .pingJwksUrl("string")
        .pingPassword("string")
        .pingPrivilegedUser("string")
        .pingRedirectUris("string")
        .pingRestrictedScopes("string")
        .pingSigningAlgo("string")
        .pingUrl("string")
        .producerEncryptionKeyName("string")
        .tags("string")
        .targetName("string")
        .userTtl("string")
        .build());
    
    dynamic_secret_ping_resource = akeyless.DynamicSecretPing("dynamicSecretPingResource",
        delete_protection="string",
        dynamic_secret_ping_id="string",
        item_custom_fields={
            "string": "string",
        },
        name="string",
        ping_administrative_port="string",
        ping_atm_id="string",
        ping_authorization_port="string",
        ping_cert_subject_dn="string",
        ping_client_authentication_type="string",
        ping_enforce_replay_prevention="string",
        ping_grant_types=["string"],
        ping_issuer_dn="string",
        ping_jwks="string",
        ping_jwks_url="string",
        ping_password="string",
        ping_privileged_user="string",
        ping_redirect_uris=["string"],
        ping_restricted_scopes=["string"],
        ping_signing_algo="string",
        ping_url="string",
        producer_encryption_key_name="string",
        tags=["string"],
        target_name="string",
        user_ttl="string")
    
    const dynamicSecretPingResource = new akeyless.DynamicSecretPing("dynamicSecretPingResource", {
        deleteProtection: "string",
        dynamicSecretPingId: "string",
        itemCustomFields: {
            string: "string",
        },
        name: "string",
        pingAdministrativePort: "string",
        pingAtmId: "string",
        pingAuthorizationPort: "string",
        pingCertSubjectDn: "string",
        pingClientAuthenticationType: "string",
        pingEnforceReplayPrevention: "string",
        pingGrantTypes: ["string"],
        pingIssuerDn: "string",
        pingJwks: "string",
        pingJwksUrl: "string",
        pingPassword: "string",
        pingPrivilegedUser: "string",
        pingRedirectUris: ["string"],
        pingRestrictedScopes: ["string"],
        pingSigningAlgo: "string",
        pingUrl: "string",
        producerEncryptionKeyName: "string",
        tags: ["string"],
        targetName: "string",
        userTtl: "string",
    });
    
    type: akeyless:DynamicSecretPing
    properties:
        deleteProtection: string
        dynamicSecretPingId: string
        itemCustomFields:
            string: string
        name: string
        pingAdministrativePort: string
        pingAtmId: string
        pingAuthorizationPort: string
        pingCertSubjectDn: string
        pingClientAuthenticationType: string
        pingEnforceReplayPrevention: string
        pingGrantTypes:
            - string
        pingIssuerDn: string
        pingJwks: string
        pingJwksUrl: string
        pingPassword: string
        pingPrivilegedUser: string
        pingRedirectUris:
            - string
        pingRestrictedScopes:
            - string
        pingSigningAlgo: string
        pingUrl: string
        producerEncryptionKeyName: string
        tags:
            - string
        targetName: string
        userTtl: string
    

    DynamicSecretPing Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The DynamicSecretPing resource accepts the following input properties:

    DeleteProtection string
    Protection from accidental deletion of this object [true/false]
    DynamicSecretPingId string
    The ID of this resource.
    ItemCustomFields Dictionary<string, string>
    Additional custom fields to associate with the item
    Name string
    Dynamic secret name
    PingAdministrativePort string
    Ping Federate administrative port
    PingAtmId string
    Set a specific Access Token Management (ATM) instance for the created OAuth Client by providing the ATM Id. If no explicit value is given, the default pingfederate server ATM will be set.
    PingAuthorizationPort string
    Ping Federate authorization port
    PingCertSubjectDn string
    The subject DN of the client certificate. If no explicit value is given, the producer will create CA certificate and matched client certificate and return it as value. Used in conjunction with ping-issuer-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    PingClientAuthenticationType string
    OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
    PingEnforceReplayPrevention string
    Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
    PingGrantTypes List<string>
    List of OAuth client grant types [IMPLICIT, AUTHORIZATIONCODE, CLIENTCREDENTIALS, TOKENEXCHANGE, REFRESHTOKEN, ASSERTIONGRANTS, PASSWORD, RESOURCEOWNERCREDENTIALS]. If no explicit value is given, AUTHORIZATIONCODE will be selected as default.
    PingIssuerDn string
    Issuer DN of trusted CA certificate that imported into Ping Federate server. You may select "Trust Any" to trust all the existing issuers in Ping Federate server. Used in conjunction with ping-cert-subject-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    PingJwks string
    Base64-encoded JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT (Sign Algo: RS256) and return it as value (relevant for PRIVATEKEYJWT authentication method)
    PingJwksUrl string
    The URL of the JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT and return it as value (relevant for PRIVATEKEYJWT authentication method)
    PingPassword string
    Ping Federate privileged user password
    PingPrivilegedUser string
    Ping Federate privileged user
    PingRedirectUris List<string>
    List of URIs to which the OAuth authorization server may redirect the resource owner's user agent after authorization is obtained. At least one redirection URI is required for the AUTHORIZATION_CODE and IMPLICIT grant types.
    PingRestrictedScopes List<string>
    Limit the OAuth client to specific scopes list
    PingSigningAlgo string
    The signing algorithm that the client must use to sign its request objects [RS256,RS384,RS512,ES256,ES384,ES512,PS256,PS384,PS512] If no explicit value is given, the client can use any of the supported signing algorithms (relevant for PRIVATEKEYJWT authentication method)
    PingUrl string
    Ping URL
    ProducerEncryptionKeyName string
    Dynamic producer encryption key
    Tags List<string>
    Add tags attached to this object
    TargetName string
    Target name
    UserTtl string
    The time from dynamic secret creation to expiration.
    DeleteProtection string
    Protection from accidental deletion of this object [true/false]
    DynamicSecretPingId string
    The ID of this resource.
    ItemCustomFields map[string]string
    Additional custom fields to associate with the item
    Name string
    Dynamic secret name
    PingAdministrativePort string
    Ping Federate administrative port
    PingAtmId string
    Set a specific Access Token Management (ATM) instance for the created OAuth Client by providing the ATM Id. If no explicit value is given, the default pingfederate server ATM will be set.
    PingAuthorizationPort string
    Ping Federate authorization port
    PingCertSubjectDn string
    The subject DN of the client certificate. If no explicit value is given, the producer will create CA certificate and matched client certificate and return it as value. Used in conjunction with ping-issuer-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    PingClientAuthenticationType string
    OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
    PingEnforceReplayPrevention string
    Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
    PingGrantTypes []string
    List of OAuth client grant types [IMPLICIT, AUTHORIZATIONCODE, CLIENTCREDENTIALS, TOKENEXCHANGE, REFRESHTOKEN, ASSERTIONGRANTS, PASSWORD, RESOURCEOWNERCREDENTIALS]. If no explicit value is given, AUTHORIZATIONCODE will be selected as default.
    PingIssuerDn string
    Issuer DN of trusted CA certificate that imported into Ping Federate server. You may select "Trust Any" to trust all the existing issuers in Ping Federate server. Used in conjunction with ping-cert-subject-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    PingJwks string
    Base64-encoded JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT (Sign Algo: RS256) and return it as value (relevant for PRIVATEKEYJWT authentication method)
    PingJwksUrl string
    The URL of the JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT and return it as value (relevant for PRIVATEKEYJWT authentication method)
    PingPassword string
    Ping Federate privileged user password
    PingPrivilegedUser string
    Ping Federate privileged user
    PingRedirectUris []string
    List of URIs to which the OAuth authorization server may redirect the resource owner's user agent after authorization is obtained. At least one redirection URI is required for the AUTHORIZATION_CODE and IMPLICIT grant types.
    PingRestrictedScopes []string
    Limit the OAuth client to specific scopes list
    PingSigningAlgo string
    The signing algorithm that the client must use to sign its request objects [RS256,RS384,RS512,ES256,ES384,ES512,PS256,PS384,PS512] If no explicit value is given, the client can use any of the supported signing algorithms (relevant for PRIVATEKEYJWT authentication method)
    PingUrl string
    Ping URL
    ProducerEncryptionKeyName string
    Dynamic producer encryption key
    Tags []string
    Add tags attached to this object
    TargetName string
    Target name
    UserTtl string
    The time from dynamic secret creation to expiration.
    deleteProtection String
    Protection from accidental deletion of this object [true/false]
    dynamicSecretPingId String
    The ID of this resource.
    itemCustomFields Map<String,String>
    Additional custom fields to associate with the item
    name String
    Dynamic secret name
    pingAdministrativePort String
    Ping Federate administrative port
    pingAtmId String
    Set a specific Access Token Management (ATM) instance for the created OAuth Client by providing the ATM Id. If no explicit value is given, the default pingfederate server ATM will be set.
    pingAuthorizationPort String
    Ping Federate authorization port
    pingCertSubjectDn String
    The subject DN of the client certificate. If no explicit value is given, the producer will create CA certificate and matched client certificate and return it as value. Used in conjunction with ping-issuer-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    pingClientAuthenticationType String
    OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
    pingEnforceReplayPrevention String
    Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
    pingGrantTypes List<String>
    List of OAuth client grant types [IMPLICIT, AUTHORIZATIONCODE, CLIENTCREDENTIALS, TOKENEXCHANGE, REFRESHTOKEN, ASSERTIONGRANTS, PASSWORD, RESOURCEOWNERCREDENTIALS]. If no explicit value is given, AUTHORIZATIONCODE will be selected as default.
    pingIssuerDn String
    Issuer DN of trusted CA certificate that imported into Ping Federate server. You may select "Trust Any" to trust all the existing issuers in Ping Federate server. Used in conjunction with ping-cert-subject-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    pingJwks String
    Base64-encoded JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT (Sign Algo: RS256) and return it as value (relevant for PRIVATEKEYJWT authentication method)
    pingJwksUrl String
    The URL of the JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT and return it as value (relevant for PRIVATEKEYJWT authentication method)
    pingPassword String
    Ping Federate privileged user password
    pingPrivilegedUser String
    Ping Federate privileged user
    pingRedirectUris List<String>
    List of URIs to which the OAuth authorization server may redirect the resource owner's user agent after authorization is obtained. At least one redirection URI is required for the AUTHORIZATION_CODE and IMPLICIT grant types.
    pingRestrictedScopes List<String>
    Limit the OAuth client to specific scopes list
    pingSigningAlgo String
    The signing algorithm that the client must use to sign its request objects [RS256,RS384,RS512,ES256,ES384,ES512,PS256,PS384,PS512] If no explicit value is given, the client can use any of the supported signing algorithms (relevant for PRIVATEKEYJWT authentication method)
    pingUrl String
    Ping URL
    producerEncryptionKeyName String
    Dynamic producer encryption key
    tags List<String>
    Add tags attached to this object
    targetName String
    Target name
    userTtl String
    The time from dynamic secret creation to expiration.
    deleteProtection string
    Protection from accidental deletion of this object [true/false]
    dynamicSecretPingId string
    The ID of this resource.
    itemCustomFields {[key: string]: string}
    Additional custom fields to associate with the item
    name string
    Dynamic secret name
    pingAdministrativePort string
    Ping Federate administrative port
    pingAtmId string
    Set a specific Access Token Management (ATM) instance for the created OAuth Client by providing the ATM Id. If no explicit value is given, the default pingfederate server ATM will be set.
    pingAuthorizationPort string
    Ping Federate authorization port
    pingCertSubjectDn string
    The subject DN of the client certificate. If no explicit value is given, the producer will create CA certificate and matched client certificate and return it as value. Used in conjunction with ping-issuer-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    pingClientAuthenticationType string
    OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
    pingEnforceReplayPrevention string
    Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
    pingGrantTypes string[]
    List of OAuth client grant types [IMPLICIT, AUTHORIZATIONCODE, CLIENTCREDENTIALS, TOKENEXCHANGE, REFRESHTOKEN, ASSERTIONGRANTS, PASSWORD, RESOURCEOWNERCREDENTIALS]. If no explicit value is given, AUTHORIZATIONCODE will be selected as default.
    pingIssuerDn string
    Issuer DN of trusted CA certificate that imported into Ping Federate server. You may select "Trust Any" to trust all the existing issuers in Ping Federate server. Used in conjunction with ping-cert-subject-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    pingJwks string
    Base64-encoded JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT (Sign Algo: RS256) and return it as value (relevant for PRIVATEKEYJWT authentication method)
    pingJwksUrl string
    The URL of the JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT and return it as value (relevant for PRIVATEKEYJWT authentication method)
    pingPassword string
    Ping Federate privileged user password
    pingPrivilegedUser string
    Ping Federate privileged user
    pingRedirectUris string[]
    List of URIs to which the OAuth authorization server may redirect the resource owner's user agent after authorization is obtained. At least one redirection URI is required for the AUTHORIZATION_CODE and IMPLICIT grant types.
    pingRestrictedScopes string[]
    Limit the OAuth client to specific scopes list
    pingSigningAlgo string
    The signing algorithm that the client must use to sign its request objects [RS256,RS384,RS512,ES256,ES384,ES512,PS256,PS384,PS512] If no explicit value is given, the client can use any of the supported signing algorithms (relevant for PRIVATEKEYJWT authentication method)
    pingUrl string
    Ping URL
    producerEncryptionKeyName string
    Dynamic producer encryption key
    tags string[]
    Add tags attached to this object
    targetName string
    Target name
    userTtl string
    The time from dynamic secret creation to expiration.
    delete_protection str
    Protection from accidental deletion of this object [true/false]
    dynamic_secret_ping_id str
    The ID of this resource.
    item_custom_fields Mapping[str, str]
    Additional custom fields to associate with the item
    name str
    Dynamic secret name
    ping_administrative_port str
    Ping Federate administrative port
    ping_atm_id str
    Set a specific Access Token Management (ATM) instance for the created OAuth Client by providing the ATM Id. If no explicit value is given, the default pingfederate server ATM will be set.
    ping_authorization_port str
    Ping Federate authorization port
    ping_cert_subject_dn str
    The subject DN of the client certificate. If no explicit value is given, the producer will create CA certificate and matched client certificate and return it as value. Used in conjunction with ping-issuer-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    ping_client_authentication_type str
    OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
    ping_enforce_replay_prevention str
    Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
    ping_grant_types Sequence[str]
    List of OAuth client grant types [IMPLICIT, AUTHORIZATIONCODE, CLIENTCREDENTIALS, TOKENEXCHANGE, REFRESHTOKEN, ASSERTIONGRANTS, PASSWORD, RESOURCEOWNERCREDENTIALS]. If no explicit value is given, AUTHORIZATIONCODE will be selected as default.
    ping_issuer_dn str
    Issuer DN of trusted CA certificate that imported into Ping Federate server. You may select "Trust Any" to trust all the existing issuers in Ping Federate server. Used in conjunction with ping-cert-subject-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    ping_jwks str
    Base64-encoded JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT (Sign Algo: RS256) and return it as value (relevant for PRIVATEKEYJWT authentication method)
    ping_jwks_url str
    The URL of the JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT and return it as value (relevant for PRIVATEKEYJWT authentication method)
    ping_password str
    Ping Federate privileged user password
    ping_privileged_user str
    Ping Federate privileged user
    ping_redirect_uris Sequence[str]
    List of URIs to which the OAuth authorization server may redirect the resource owner's user agent after authorization is obtained. At least one redirection URI is required for the AUTHORIZATION_CODE and IMPLICIT grant types.
    ping_restricted_scopes Sequence[str]
    Limit the OAuth client to specific scopes list
    ping_signing_algo str
    The signing algorithm that the client must use to sign its request objects [RS256,RS384,RS512,ES256,ES384,ES512,PS256,PS384,PS512] If no explicit value is given, the client can use any of the supported signing algorithms (relevant for PRIVATEKEYJWT authentication method)
    ping_url str
    Ping URL
    producer_encryption_key_name str
    Dynamic producer encryption key
    tags Sequence[str]
    Add tags attached to this object
    target_name str
    Target name
    user_ttl str
    The time from dynamic secret creation to expiration.
    deleteProtection String
    Protection from accidental deletion of this object [true/false]
    dynamicSecretPingId String
    The ID of this resource.
    itemCustomFields Map<String>
    Additional custom fields to associate with the item
    name String
    Dynamic secret name
    pingAdministrativePort String
    Ping Federate administrative port
    pingAtmId String
    Set a specific Access Token Management (ATM) instance for the created OAuth Client by providing the ATM Id. If no explicit value is given, the default pingfederate server ATM will be set.
    pingAuthorizationPort String
    Ping Federate authorization port
    pingCertSubjectDn String
    The subject DN of the client certificate. If no explicit value is given, the producer will create CA certificate and matched client certificate and return it as value. Used in conjunction with ping-issuer-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    pingClientAuthenticationType String
    OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
    pingEnforceReplayPrevention String
    Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
    pingGrantTypes List<String>
    List of OAuth client grant types [IMPLICIT, AUTHORIZATIONCODE, CLIENTCREDENTIALS, TOKENEXCHANGE, REFRESHTOKEN, ASSERTIONGRANTS, PASSWORD, RESOURCEOWNERCREDENTIALS]. If no explicit value is given, AUTHORIZATIONCODE will be selected as default.
    pingIssuerDn String
    Issuer DN of trusted CA certificate that imported into Ping Federate server. You may select "Trust Any" to trust all the existing issuers in Ping Federate server. Used in conjunction with ping-cert-subject-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    pingJwks String
    Base64-encoded JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT (Sign Algo: RS256) and return it as value (relevant for PRIVATEKEYJWT authentication method)
    pingJwksUrl String
    The URL of the JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT and return it as value (relevant for PRIVATEKEYJWT authentication method)
    pingPassword String
    Ping Federate privileged user password
    pingPrivilegedUser String
    Ping Federate privileged user
    pingRedirectUris List<String>
    List of URIs to which the OAuth authorization server may redirect the resource owner's user agent after authorization is obtained. At least one redirection URI is required for the AUTHORIZATION_CODE and IMPLICIT grant types.
    pingRestrictedScopes List<String>
    Limit the OAuth client to specific scopes list
    pingSigningAlgo String
    The signing algorithm that the client must use to sign its request objects [RS256,RS384,RS512,ES256,ES384,ES512,PS256,PS384,PS512] If no explicit value is given, the client can use any of the supported signing algorithms (relevant for PRIVATEKEYJWT authentication method)
    pingUrl String
    Ping URL
    producerEncryptionKeyName String
    Dynamic producer encryption key
    tags List<String>
    Add tags attached to this object
    targetName String
    Target name
    userTtl String
    The time from dynamic secret creation to expiration.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DynamicSecretPing resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing DynamicSecretPing Resource

    Get an existing DynamicSecretPing resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DynamicSecretPingState, opts?: CustomResourceOptions): DynamicSecretPing
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            delete_protection: Optional[str] = None,
            dynamic_secret_ping_id: Optional[str] = None,
            item_custom_fields: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            ping_administrative_port: Optional[str] = None,
            ping_atm_id: Optional[str] = None,
            ping_authorization_port: Optional[str] = None,
            ping_cert_subject_dn: Optional[str] = None,
            ping_client_authentication_type: Optional[str] = None,
            ping_enforce_replay_prevention: Optional[str] = None,
            ping_grant_types: Optional[Sequence[str]] = None,
            ping_issuer_dn: Optional[str] = None,
            ping_jwks: Optional[str] = None,
            ping_jwks_url: Optional[str] = None,
            ping_password: Optional[str] = None,
            ping_privileged_user: Optional[str] = None,
            ping_redirect_uris: Optional[Sequence[str]] = None,
            ping_restricted_scopes: Optional[Sequence[str]] = None,
            ping_signing_algo: Optional[str] = None,
            ping_url: Optional[str] = None,
            producer_encryption_key_name: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            target_name: Optional[str] = None,
            user_ttl: Optional[str] = None) -> DynamicSecretPing
    func GetDynamicSecretPing(ctx *Context, name string, id IDInput, state *DynamicSecretPingState, opts ...ResourceOption) (*DynamicSecretPing, error)
    public static DynamicSecretPing Get(string name, Input<string> id, DynamicSecretPingState? state, CustomResourceOptions? opts = null)
    public static DynamicSecretPing get(String name, Output<String> id, DynamicSecretPingState state, CustomResourceOptions options)
    resources:  _:    type: akeyless:DynamicSecretPing    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    DeleteProtection string
    Protection from accidental deletion of this object [true/false]
    DynamicSecretPingId string
    The ID of this resource.
    ItemCustomFields Dictionary<string, string>
    Additional custom fields to associate with the item
    Name string
    Dynamic secret name
    PingAdministrativePort string
    Ping Federate administrative port
    PingAtmId string
    Set a specific Access Token Management (ATM) instance for the created OAuth Client by providing the ATM Id. If no explicit value is given, the default pingfederate server ATM will be set.
    PingAuthorizationPort string
    Ping Federate authorization port
    PingCertSubjectDn string
    The subject DN of the client certificate. If no explicit value is given, the producer will create CA certificate and matched client certificate and return it as value. Used in conjunction with ping-issuer-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    PingClientAuthenticationType string
    OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
    PingEnforceReplayPrevention string
    Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
    PingGrantTypes List<string>
    List of OAuth client grant types [IMPLICIT, AUTHORIZATIONCODE, CLIENTCREDENTIALS, TOKENEXCHANGE, REFRESHTOKEN, ASSERTIONGRANTS, PASSWORD, RESOURCEOWNERCREDENTIALS]. If no explicit value is given, AUTHORIZATIONCODE will be selected as default.
    PingIssuerDn string
    Issuer DN of trusted CA certificate that imported into Ping Federate server. You may select "Trust Any" to trust all the existing issuers in Ping Federate server. Used in conjunction with ping-cert-subject-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    PingJwks string
    Base64-encoded JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT (Sign Algo: RS256) and return it as value (relevant for PRIVATEKEYJWT authentication method)
    PingJwksUrl string
    The URL of the JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT and return it as value (relevant for PRIVATEKEYJWT authentication method)
    PingPassword string
    Ping Federate privileged user password
    PingPrivilegedUser string
    Ping Federate privileged user
    PingRedirectUris List<string>
    List of URIs to which the OAuth authorization server may redirect the resource owner's user agent after authorization is obtained. At least one redirection URI is required for the AUTHORIZATION_CODE and IMPLICIT grant types.
    PingRestrictedScopes List<string>
    Limit the OAuth client to specific scopes list
    PingSigningAlgo string
    The signing algorithm that the client must use to sign its request objects [RS256,RS384,RS512,ES256,ES384,ES512,PS256,PS384,PS512] If no explicit value is given, the client can use any of the supported signing algorithms (relevant for PRIVATEKEYJWT authentication method)
    PingUrl string
    Ping URL
    ProducerEncryptionKeyName string
    Dynamic producer encryption key
    Tags List<string>
    Add tags attached to this object
    TargetName string
    Target name
    UserTtl string
    The time from dynamic secret creation to expiration.
    DeleteProtection string
    Protection from accidental deletion of this object [true/false]
    DynamicSecretPingId string
    The ID of this resource.
    ItemCustomFields map[string]string
    Additional custom fields to associate with the item
    Name string
    Dynamic secret name
    PingAdministrativePort string
    Ping Federate administrative port
    PingAtmId string
    Set a specific Access Token Management (ATM) instance for the created OAuth Client by providing the ATM Id. If no explicit value is given, the default pingfederate server ATM will be set.
    PingAuthorizationPort string
    Ping Federate authorization port
    PingCertSubjectDn string
    The subject DN of the client certificate. If no explicit value is given, the producer will create CA certificate and matched client certificate and return it as value. Used in conjunction with ping-issuer-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    PingClientAuthenticationType string
    OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
    PingEnforceReplayPrevention string
    Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
    PingGrantTypes []string
    List of OAuth client grant types [IMPLICIT, AUTHORIZATIONCODE, CLIENTCREDENTIALS, TOKENEXCHANGE, REFRESHTOKEN, ASSERTIONGRANTS, PASSWORD, RESOURCEOWNERCREDENTIALS]. If no explicit value is given, AUTHORIZATIONCODE will be selected as default.
    PingIssuerDn string
    Issuer DN of trusted CA certificate that imported into Ping Federate server. You may select "Trust Any" to trust all the existing issuers in Ping Federate server. Used in conjunction with ping-cert-subject-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    PingJwks string
    Base64-encoded JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT (Sign Algo: RS256) and return it as value (relevant for PRIVATEKEYJWT authentication method)
    PingJwksUrl string
    The URL of the JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT and return it as value (relevant for PRIVATEKEYJWT authentication method)
    PingPassword string
    Ping Federate privileged user password
    PingPrivilegedUser string
    Ping Federate privileged user
    PingRedirectUris []string
    List of URIs to which the OAuth authorization server may redirect the resource owner's user agent after authorization is obtained. At least one redirection URI is required for the AUTHORIZATION_CODE and IMPLICIT grant types.
    PingRestrictedScopes []string
    Limit the OAuth client to specific scopes list
    PingSigningAlgo string
    The signing algorithm that the client must use to sign its request objects [RS256,RS384,RS512,ES256,ES384,ES512,PS256,PS384,PS512] If no explicit value is given, the client can use any of the supported signing algorithms (relevant for PRIVATEKEYJWT authentication method)
    PingUrl string
    Ping URL
    ProducerEncryptionKeyName string
    Dynamic producer encryption key
    Tags []string
    Add tags attached to this object
    TargetName string
    Target name
    UserTtl string
    The time from dynamic secret creation to expiration.
    deleteProtection String
    Protection from accidental deletion of this object [true/false]
    dynamicSecretPingId String
    The ID of this resource.
    itemCustomFields Map<String,String>
    Additional custom fields to associate with the item
    name String
    Dynamic secret name
    pingAdministrativePort String
    Ping Federate administrative port
    pingAtmId String
    Set a specific Access Token Management (ATM) instance for the created OAuth Client by providing the ATM Id. If no explicit value is given, the default pingfederate server ATM will be set.
    pingAuthorizationPort String
    Ping Federate authorization port
    pingCertSubjectDn String
    The subject DN of the client certificate. If no explicit value is given, the producer will create CA certificate and matched client certificate and return it as value. Used in conjunction with ping-issuer-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    pingClientAuthenticationType String
    OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
    pingEnforceReplayPrevention String
    Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
    pingGrantTypes List<String>
    List of OAuth client grant types [IMPLICIT, AUTHORIZATIONCODE, CLIENTCREDENTIALS, TOKENEXCHANGE, REFRESHTOKEN, ASSERTIONGRANTS, PASSWORD, RESOURCEOWNERCREDENTIALS]. If no explicit value is given, AUTHORIZATIONCODE will be selected as default.
    pingIssuerDn String
    Issuer DN of trusted CA certificate that imported into Ping Federate server. You may select "Trust Any" to trust all the existing issuers in Ping Federate server. Used in conjunction with ping-cert-subject-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    pingJwks String
    Base64-encoded JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT (Sign Algo: RS256) and return it as value (relevant for PRIVATEKEYJWT authentication method)
    pingJwksUrl String
    The URL of the JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT and return it as value (relevant for PRIVATEKEYJWT authentication method)
    pingPassword String
    Ping Federate privileged user password
    pingPrivilegedUser String
    Ping Federate privileged user
    pingRedirectUris List<String>
    List of URIs to which the OAuth authorization server may redirect the resource owner's user agent after authorization is obtained. At least one redirection URI is required for the AUTHORIZATION_CODE and IMPLICIT grant types.
    pingRestrictedScopes List<String>
    Limit the OAuth client to specific scopes list
    pingSigningAlgo String
    The signing algorithm that the client must use to sign its request objects [RS256,RS384,RS512,ES256,ES384,ES512,PS256,PS384,PS512] If no explicit value is given, the client can use any of the supported signing algorithms (relevant for PRIVATEKEYJWT authentication method)
    pingUrl String
    Ping URL
    producerEncryptionKeyName String
    Dynamic producer encryption key
    tags List<String>
    Add tags attached to this object
    targetName String
    Target name
    userTtl String
    The time from dynamic secret creation to expiration.
    deleteProtection string
    Protection from accidental deletion of this object [true/false]
    dynamicSecretPingId string
    The ID of this resource.
    itemCustomFields {[key: string]: string}
    Additional custom fields to associate with the item
    name string
    Dynamic secret name
    pingAdministrativePort string
    Ping Federate administrative port
    pingAtmId string
    Set a specific Access Token Management (ATM) instance for the created OAuth Client by providing the ATM Id. If no explicit value is given, the default pingfederate server ATM will be set.
    pingAuthorizationPort string
    Ping Federate authorization port
    pingCertSubjectDn string
    The subject DN of the client certificate. If no explicit value is given, the producer will create CA certificate and matched client certificate and return it as value. Used in conjunction with ping-issuer-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    pingClientAuthenticationType string
    OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
    pingEnforceReplayPrevention string
    Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
    pingGrantTypes string[]
    List of OAuth client grant types [IMPLICIT, AUTHORIZATIONCODE, CLIENTCREDENTIALS, TOKENEXCHANGE, REFRESHTOKEN, ASSERTIONGRANTS, PASSWORD, RESOURCEOWNERCREDENTIALS]. If no explicit value is given, AUTHORIZATIONCODE will be selected as default.
    pingIssuerDn string
    Issuer DN of trusted CA certificate that imported into Ping Federate server. You may select "Trust Any" to trust all the existing issuers in Ping Federate server. Used in conjunction with ping-cert-subject-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    pingJwks string
    Base64-encoded JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT (Sign Algo: RS256) and return it as value (relevant for PRIVATEKEYJWT authentication method)
    pingJwksUrl string
    The URL of the JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT and return it as value (relevant for PRIVATEKEYJWT authentication method)
    pingPassword string
    Ping Federate privileged user password
    pingPrivilegedUser string
    Ping Federate privileged user
    pingRedirectUris string[]
    List of URIs to which the OAuth authorization server may redirect the resource owner's user agent after authorization is obtained. At least one redirection URI is required for the AUTHORIZATION_CODE and IMPLICIT grant types.
    pingRestrictedScopes string[]
    Limit the OAuth client to specific scopes list
    pingSigningAlgo string
    The signing algorithm that the client must use to sign its request objects [RS256,RS384,RS512,ES256,ES384,ES512,PS256,PS384,PS512] If no explicit value is given, the client can use any of the supported signing algorithms (relevant for PRIVATEKEYJWT authentication method)
    pingUrl string
    Ping URL
    producerEncryptionKeyName string
    Dynamic producer encryption key
    tags string[]
    Add tags attached to this object
    targetName string
    Target name
    userTtl string
    The time from dynamic secret creation to expiration.
    delete_protection str
    Protection from accidental deletion of this object [true/false]
    dynamic_secret_ping_id str
    The ID of this resource.
    item_custom_fields Mapping[str, str]
    Additional custom fields to associate with the item
    name str
    Dynamic secret name
    ping_administrative_port str
    Ping Federate administrative port
    ping_atm_id str
    Set a specific Access Token Management (ATM) instance for the created OAuth Client by providing the ATM Id. If no explicit value is given, the default pingfederate server ATM will be set.
    ping_authorization_port str
    Ping Federate authorization port
    ping_cert_subject_dn str
    The subject DN of the client certificate. If no explicit value is given, the producer will create CA certificate and matched client certificate and return it as value. Used in conjunction with ping-issuer-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    ping_client_authentication_type str
    OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
    ping_enforce_replay_prevention str
    Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
    ping_grant_types Sequence[str]
    List of OAuth client grant types [IMPLICIT, AUTHORIZATIONCODE, CLIENTCREDENTIALS, TOKENEXCHANGE, REFRESHTOKEN, ASSERTIONGRANTS, PASSWORD, RESOURCEOWNERCREDENTIALS]. If no explicit value is given, AUTHORIZATIONCODE will be selected as default.
    ping_issuer_dn str
    Issuer DN of trusted CA certificate that imported into Ping Federate server. You may select "Trust Any" to trust all the existing issuers in Ping Federate server. Used in conjunction with ping-cert-subject-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    ping_jwks str
    Base64-encoded JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT (Sign Algo: RS256) and return it as value (relevant for PRIVATEKEYJWT authentication method)
    ping_jwks_url str
    The URL of the JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT and return it as value (relevant for PRIVATEKEYJWT authentication method)
    ping_password str
    Ping Federate privileged user password
    ping_privileged_user str
    Ping Federate privileged user
    ping_redirect_uris Sequence[str]
    List of URIs to which the OAuth authorization server may redirect the resource owner's user agent after authorization is obtained. At least one redirection URI is required for the AUTHORIZATION_CODE and IMPLICIT grant types.
    ping_restricted_scopes Sequence[str]
    Limit the OAuth client to specific scopes list
    ping_signing_algo str
    The signing algorithm that the client must use to sign its request objects [RS256,RS384,RS512,ES256,ES384,ES512,PS256,PS384,PS512] If no explicit value is given, the client can use any of the supported signing algorithms (relevant for PRIVATEKEYJWT authentication method)
    ping_url str
    Ping URL
    producer_encryption_key_name str
    Dynamic producer encryption key
    tags Sequence[str]
    Add tags attached to this object
    target_name str
    Target name
    user_ttl str
    The time from dynamic secret creation to expiration.
    deleteProtection String
    Protection from accidental deletion of this object [true/false]
    dynamicSecretPingId String
    The ID of this resource.
    itemCustomFields Map<String>
    Additional custom fields to associate with the item
    name String
    Dynamic secret name
    pingAdministrativePort String
    Ping Federate administrative port
    pingAtmId String
    Set a specific Access Token Management (ATM) instance for the created OAuth Client by providing the ATM Id. If no explicit value is given, the default pingfederate server ATM will be set.
    pingAuthorizationPort String
    Ping Federate authorization port
    pingCertSubjectDn String
    The subject DN of the client certificate. If no explicit value is given, the producer will create CA certificate and matched client certificate and return it as value. Used in conjunction with ping-issuer-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    pingClientAuthenticationType String
    OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
    pingEnforceReplayPrevention String
    Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
    pingGrantTypes List<String>
    List of OAuth client grant types [IMPLICIT, AUTHORIZATIONCODE, CLIENTCREDENTIALS, TOKENEXCHANGE, REFRESHTOKEN, ASSERTIONGRANTS, PASSWORD, RESOURCEOWNERCREDENTIALS]. If no explicit value is given, AUTHORIZATIONCODE will be selected as default.
    pingIssuerDn String
    Issuer DN of trusted CA certificate that imported into Ping Federate server. You may select "Trust Any" to trust all the existing issuers in Ping Federate server. Used in conjunction with ping-cert-subject-dn (relevant for CLIENTTLSCERTIFICATE authentication method)
    pingJwks String
    Base64-encoded JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT (Sign Algo: RS256) and return it as value (relevant for PRIVATEKEYJWT authentication method)
    pingJwksUrl String
    The URL of the JSON Web Key Set (JWKS). If no explicit value is given, the producer will create JWKs and matched signed JWT and return it as value (relevant for PRIVATEKEYJWT authentication method)
    pingPassword String
    Ping Federate privileged user password
    pingPrivilegedUser String
    Ping Federate privileged user
    pingRedirectUris List<String>
    List of URIs to which the OAuth authorization server may redirect the resource owner's user agent after authorization is obtained. At least one redirection URI is required for the AUTHORIZATION_CODE and IMPLICIT grant types.
    pingRestrictedScopes List<String>
    Limit the OAuth client to specific scopes list
    pingSigningAlgo String
    The signing algorithm that the client must use to sign its request objects [RS256,RS384,RS512,ES256,ES384,ES512,PS256,PS384,PS512] If no explicit value is given, the client can use any of the supported signing algorithms (relevant for PRIVATEKEYJWT authentication method)
    pingUrl String
    Ping URL
    producerEncryptionKeyName String
    Dynamic producer encryption key
    tags List<String>
    Add tags attached to this object
    targetName String
    Target name
    userTtl String
    The time from dynamic secret creation to expiration.

    Package Details

    Repository
    akeyless akeyless-community/terraform-provider-akeyless
    License
    Notes
    This Pulumi package is based on the akeyless Terraform Provider.
    Viewing docs for akeyless 2.0.1
    published on Monday, Apr 27, 2026 by akeyless-community
      Try Pulumi Cloud free. Your team will thank you.