published on Monday, Apr 27, 2026 by akeyless-community
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:
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Dynamic
Secret stringPing Id - The ID of this resource.
- Item
Custom Dictionary<string, string>Fields - Additional custom fields to associate with the item
- Name string
- Dynamic secret name
- Ping
Administrative stringPort - Ping Federate administrative port
- Ping
Atm stringId - 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.
- string
- Ping Federate authorization port
- Ping
Cert stringSubject Dn - 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 stringAuthentication Type - OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
- Ping
Enforce stringReplay Prevention - Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
- Ping
Grant List<string>Types - 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 stringDn - 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 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)
- Ping
Jwks stringUrl - 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 string - Ping Federate privileged user password
- Ping
Privileged stringUser - Ping Federate privileged user
- Ping
Redirect List<string>Uris - 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 List<string>Scopes - Limit the OAuth client to specific scopes list
- Ping
Signing stringAlgo - 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 string - Ping URL
- Producer
Encryption stringKey Name - Dynamic producer encryption key
- List<string>
- Add tags attached to this object
- Target
Name string - Target name
- User
Ttl string - The time from dynamic secret creation to expiration.
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Dynamic
Secret stringPing Id - The ID of this resource.
- Item
Custom map[string]stringFields - Additional custom fields to associate with the item
- Name string
- Dynamic secret name
- Ping
Administrative stringPort - Ping Federate administrative port
- Ping
Atm stringId - 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.
- string
- Ping Federate authorization port
- Ping
Cert stringSubject Dn - 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 stringAuthentication Type - OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
- Ping
Enforce stringReplay Prevention - Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
- Ping
Grant []stringTypes - 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 stringDn - 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 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)
- Ping
Jwks stringUrl - 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 string - Ping Federate privileged user password
- Ping
Privileged stringUser - Ping Federate privileged user
- Ping
Redirect []stringUris - 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 []stringScopes - Limit the OAuth client to specific scopes list
- Ping
Signing stringAlgo - 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 string - Ping URL
- Producer
Encryption stringKey Name - Dynamic producer encryption key
- []string
- Add tags attached to this object
- Target
Name string - Target name
- User
Ttl string - The time from dynamic secret creation to expiration.
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- dynamic
Secret StringPing Id - The ID of this resource.
- item
Custom Map<String,String>Fields - Additional custom fields to associate with the item
- name String
- Dynamic secret name
- ping
Administrative StringPort - Ping Federate administrative port
- ping
Atm StringId - 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.
- String
- Ping Federate authorization port
- ping
Cert StringSubject Dn - 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 StringAuthentication Type - OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
- ping
Enforce StringReplay Prevention - Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
- ping
Grant List<String>Types - 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 StringDn - 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 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)
- ping
Jwks StringUrl - 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 String - Ping Federate privileged user password
- ping
Privileged StringUser - Ping Federate privileged user
- ping
Redirect List<String>Uris - 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 List<String>Scopes - Limit the OAuth client to specific scopes list
- ping
Signing StringAlgo - 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 String - Ping URL
- producer
Encryption StringKey Name - Dynamic producer encryption key
- List<String>
- Add tags attached to this object
- target
Name String - Target name
- user
Ttl String - The time from dynamic secret creation to expiration.
- delete
Protection string - Protection from accidental deletion of this object [true/false]
- dynamic
Secret stringPing Id - The ID of this resource.
- item
Custom {[key: string]: string}Fields - Additional custom fields to associate with the item
- name string
- Dynamic secret name
- ping
Administrative stringPort - Ping Federate administrative port
- ping
Atm stringId - 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.
- string
- Ping Federate authorization port
- ping
Cert stringSubject Dn - 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 stringAuthentication Type - OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
- ping
Enforce stringReplay Prevention - Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
- ping
Grant string[]Types - 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 stringDn - 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 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)
- ping
Jwks stringUrl - 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 string - Ping Federate privileged user password
- ping
Privileged stringUser - Ping Federate privileged user
- ping
Redirect string[]Uris - 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 string[]Scopes - Limit the OAuth client to specific scopes list
- ping
Signing stringAlgo - 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 string - Ping URL
- producer
Encryption stringKey Name - Dynamic producer encryption key
- string[]
- Add tags attached to this object
- target
Name string - Target name
- user
Ttl string - The time from dynamic secret creation to expiration.
- delete_
protection str - Protection from accidental deletion of this object [true/false]
- dynamic_
secret_ strping_ id - The ID of this resource.
- item_
custom_ Mapping[str, str]fields - Additional custom fields to associate with the item
- name str
- Dynamic secret name
- ping_
administrative_ strport - Ping Federate administrative port
- ping_
atm_ strid - 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.
- str
- Ping Federate authorization port
- ping_
cert_ strsubject_ dn - 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_ strauthentication_ type - OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
- ping_
enforce_ strreplay_ prevention - Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
- ping_
grant_ Sequence[str]types - 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_ strdn - 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_ strurl - 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_ struser - Ping Federate privileged user
- ping_
redirect_ Sequence[str]uris - 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_ Sequence[str]scopes - Limit the OAuth client to specific scopes list
- ping_
signing_ stralgo - 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_ strkey_ name - Dynamic producer encryption key
- Sequence[str]
- Add tags attached to this object
- target_
name str - Target name
- user_
ttl str - The time from dynamic secret creation to expiration.
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- dynamic
Secret StringPing Id - The ID of this resource.
- item
Custom Map<String>Fields - Additional custom fields to associate with the item
- name String
- Dynamic secret name
- ping
Administrative StringPort - Ping Federate administrative port
- ping
Atm StringId - 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.
- String
- Ping Federate authorization port
- ping
Cert StringSubject Dn - 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 StringAuthentication Type - OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
- ping
Enforce StringReplay Prevention - Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
- ping
Grant List<String>Types - 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 StringDn - 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 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)
- ping
Jwks StringUrl - 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 String - Ping Federate privileged user password
- ping
Privileged StringUser - Ping Federate privileged user
- ping
Redirect List<String>Uris - 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 List<String>Scopes - Limit the OAuth client to specific scopes list
- ping
Signing StringAlgo - 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 String - Ping URL
- producer
Encryption StringKey Name - Dynamic producer encryption key
- List<String>
- Add tags attached to this object
- target
Name String - Target name
- user
Ttl 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) -> DynamicSecretPingfunc 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.
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Dynamic
Secret stringPing Id - The ID of this resource.
- Item
Custom Dictionary<string, string>Fields - Additional custom fields to associate with the item
- Name string
- Dynamic secret name
- Ping
Administrative stringPort - Ping Federate administrative port
- Ping
Atm stringId - 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.
- string
- Ping Federate authorization port
- Ping
Cert stringSubject Dn - 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 stringAuthentication Type - OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
- Ping
Enforce stringReplay Prevention - Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
- Ping
Grant List<string>Types - 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 stringDn - 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 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)
- Ping
Jwks stringUrl - 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 string - Ping Federate privileged user password
- Ping
Privileged stringUser - Ping Federate privileged user
- Ping
Redirect List<string>Uris - 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 List<string>Scopes - Limit the OAuth client to specific scopes list
- Ping
Signing stringAlgo - 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 string - Ping URL
- Producer
Encryption stringKey Name - Dynamic producer encryption key
- List<string>
- Add tags attached to this object
- Target
Name string - Target name
- User
Ttl string - The time from dynamic secret creation to expiration.
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Dynamic
Secret stringPing Id - The ID of this resource.
- Item
Custom map[string]stringFields - Additional custom fields to associate with the item
- Name string
- Dynamic secret name
- Ping
Administrative stringPort - Ping Federate administrative port
- Ping
Atm stringId - 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.
- string
- Ping Federate authorization port
- Ping
Cert stringSubject Dn - 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 stringAuthentication Type - OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
- Ping
Enforce stringReplay Prevention - Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
- Ping
Grant []stringTypes - 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 stringDn - 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 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)
- Ping
Jwks stringUrl - 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 string - Ping Federate privileged user password
- Ping
Privileged stringUser - Ping Federate privileged user
- Ping
Redirect []stringUris - 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 []stringScopes - Limit the OAuth client to specific scopes list
- Ping
Signing stringAlgo - 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 string - Ping URL
- Producer
Encryption stringKey Name - Dynamic producer encryption key
- []string
- Add tags attached to this object
- Target
Name string - Target name
- User
Ttl string - The time from dynamic secret creation to expiration.
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- dynamic
Secret StringPing Id - The ID of this resource.
- item
Custom Map<String,String>Fields - Additional custom fields to associate with the item
- name String
- Dynamic secret name
- ping
Administrative StringPort - Ping Federate administrative port
- ping
Atm StringId - 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.
- String
- Ping Federate authorization port
- ping
Cert StringSubject Dn - 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 StringAuthentication Type - OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
- ping
Enforce StringReplay Prevention - Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
- ping
Grant List<String>Types - 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 StringDn - 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 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)
- ping
Jwks StringUrl - 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 String - Ping Federate privileged user password
- ping
Privileged StringUser - Ping Federate privileged user
- ping
Redirect List<String>Uris - 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 List<String>Scopes - Limit the OAuth client to specific scopes list
- ping
Signing StringAlgo - 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 String - Ping URL
- producer
Encryption StringKey Name - Dynamic producer encryption key
- List<String>
- Add tags attached to this object
- target
Name String - Target name
- user
Ttl String - The time from dynamic secret creation to expiration.
- delete
Protection string - Protection from accidental deletion of this object [true/false]
- dynamic
Secret stringPing Id - The ID of this resource.
- item
Custom {[key: string]: string}Fields - Additional custom fields to associate with the item
- name string
- Dynamic secret name
- ping
Administrative stringPort - Ping Federate administrative port
- ping
Atm stringId - 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.
- string
- Ping Federate authorization port
- ping
Cert stringSubject Dn - 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 stringAuthentication Type - OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
- ping
Enforce stringReplay Prevention - Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
- ping
Grant string[]Types - 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 stringDn - 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 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)
- ping
Jwks stringUrl - 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 string - Ping Federate privileged user password
- ping
Privileged stringUser - Ping Federate privileged user
- ping
Redirect string[]Uris - 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 string[]Scopes - Limit the OAuth client to specific scopes list
- ping
Signing stringAlgo - 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 string - Ping URL
- producer
Encryption stringKey Name - Dynamic producer encryption key
- string[]
- Add tags attached to this object
- target
Name string - Target name
- user
Ttl string - The time from dynamic secret creation to expiration.
- delete_
protection str - Protection from accidental deletion of this object [true/false]
- dynamic_
secret_ strping_ id - The ID of this resource.
- item_
custom_ Mapping[str, str]fields - Additional custom fields to associate with the item
- name str
- Dynamic secret name
- ping_
administrative_ strport - Ping Federate administrative port
- ping_
atm_ strid - 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.
- str
- Ping Federate authorization port
- ping_
cert_ strsubject_ dn - 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_ strauthentication_ type - OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
- ping_
enforce_ strreplay_ prevention - Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
- ping_
grant_ Sequence[str]types - 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_ strdn - 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_ strurl - 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_ struser - Ping Federate privileged user
- ping_
redirect_ Sequence[str]uris - 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_ Sequence[str]scopes - Limit the OAuth client to specific scopes list
- ping_
signing_ stralgo - 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_ strkey_ name - Dynamic producer encryption key
- Sequence[str]
- Add tags attached to this object
- target_
name str - Target name
- user_
ttl str - The time from dynamic secret creation to expiration.
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- dynamic
Secret StringPing Id - The ID of this resource.
- item
Custom Map<String>Fields - Additional custom fields to associate with the item
- name String
- Dynamic secret name
- ping
Administrative StringPort - Ping Federate administrative port
- ping
Atm StringId - 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.
- String
- Ping Federate authorization port
- ping
Cert StringSubject Dn - 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 StringAuthentication Type - OAuth Client Authentication Type [CLIENTSECRET, PRIVATEKEYJWT, CLIENTTLS_CERTIFICATE]
- ping
Enforce StringReplay Prevention - Determines whether PingFederate requires a unique signed JWT from the client for each action (relevant for PRIVATEKEYJWT authentication method) [true/false]
- ping
Grant List<String>Types - 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 StringDn - 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 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)
- ping
Jwks StringUrl - 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 String - Ping Federate privileged user password
- ping
Privileged StringUser - Ping Federate privileged user
- ping
Redirect List<String>Uris - 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 List<String>Scopes - Limit the OAuth client to specific scopes list
- ping
Signing StringAlgo - 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 String - Ping URL
- producer
Encryption StringKey Name - Dynamic producer encryption key
- List<String>
- Add tags attached to this object
- target
Name String - Target name
- user
Ttl 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
akeylessTerraform Provider.
published on Monday, Apr 27, 2026 by akeyless-community
