Represents a {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret hcp_vault_secrets_rotating_secret}.
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
new vaultSecretsRotatingSecret.VaultSecretsRotatingSecret(scope: Construct, id: string, config: VaultSecretsRotatingSecretConfig)
Name | Type | Description |
---|---|---|
scope |
constructs.Construct |
The scope in which to define this construct. |
id |
string |
The scoped construct ID. |
config |
VaultSecretsRotatingSecretConfig |
No description. |
- Type: constructs.Construct
The scope in which to define this construct.
- Type: string
The scoped construct ID.
Must be unique amongst siblings in the same scope
Name | Description |
---|---|
toString |
Returns a string representation of this construct. |
addOverride |
No description. |
overrideLogicalId |
Overrides the auto-generated logical ID with a specific ID. |
resetOverrideLogicalId |
Resets a previously passed logical Id to use the auto-generated logical id again. |
toHclTerraform |
No description. |
toMetadata |
No description. |
toTerraform |
Adds this resource to the terraform JSON output. |
addMoveTarget |
Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
hasResourceMove |
No description. |
importFrom |
No description. |
interpolationForAttribute |
No description. |
moveFromId |
Move the resource corresponding to "id" to this resource. |
moveTo |
Moves this resource to the target resource given by moveTarget. |
moveToId |
Moves this resource to the resource corresponding to "id". |
putAwsAccessKeys |
No description. |
putAzureApplicationPassword |
No description. |
putConfluentServiceAccount |
No description. |
putGcpServiceAccountKey |
No description. |
putMongodbAtlasUser |
No description. |
putTwilioApiKey |
No description. |
resetAwsAccessKeys |
No description. |
resetAzureApplicationPassword |
No description. |
resetConfluentServiceAccount |
No description. |
resetGcpServiceAccountKey |
No description. |
resetMongodbAtlasUser |
No description. |
resetProjectId |
No description. |
resetTwilioApiKey |
No description. |
public toString(): string
Returns a string representation of this construct.
public addOverride(path: string, value: any): void
- Type: string
- Type: any
public overrideLogicalId(newLogicalId: string): void
Overrides the auto-generated logical ID with a specific ID.
- Type: string
The new logical ID to use for this stack element.
public resetOverrideLogicalId(): void
Resets a previously passed logical Id to use the auto-generated logical id again.
public toHclTerraform(): any
public toMetadata(): any
public toTerraform(): any
Adds this resource to the terraform JSON output.
public addMoveTarget(moveTarget: string): void
Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
- Type: string
The string move target that will correspond to this resource.
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public hasResourceMove(): TerraformResourceMoveByTarget | TerraformResourceMoveById
public importFrom(id: string, provider?: TerraformProvider): void
- Type: string
- Type: cdktf.TerraformProvider
public interpolationForAttribute(terraformAttribute: string): IResolvable
- Type: string
public moveFromId(id: string): void
Move the resource corresponding to "id" to this resource.
Note that the resource being moved from must be marked as moved using it's instance function.
- Type: string
Full id of resource being moved from, e.g. "aws_s3_bucket.example".
public moveTo(moveTarget: string, index?: string | number): void
Moves this resource to the target resource given by moveTarget.
- Type: string
The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
- Type: string | number
Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
public moveToId(id: string): void
Moves this resource to the resource corresponding to "id".
- Type: string
Full id of resource to move to, e.g. "aws_s3_bucket.example".
public putAwsAccessKeys(value: VaultSecretsRotatingSecretAwsAccessKeys): void
public putAzureApplicationPassword(value: VaultSecretsRotatingSecretAzureApplicationPassword): void
public putConfluentServiceAccount(value: VaultSecretsRotatingSecretConfluentServiceAccount): void
public putGcpServiceAccountKey(value: VaultSecretsRotatingSecretGcpServiceAccountKey): void
public putMongodbAtlasUser(value: VaultSecretsRotatingSecretMongodbAtlasUser): void
public putTwilioApiKey(value: VaultSecretsRotatingSecretTwilioApiKey): void
public resetAwsAccessKeys(): void
public resetAzureApplicationPassword(): void
public resetConfluentServiceAccount(): void
public resetGcpServiceAccountKey(): void
public resetMongodbAtlasUser(): void
public resetProjectId(): void
public resetTwilioApiKey(): void
Name | Description |
---|---|
isConstruct |
Checks if x is a construct. |
isTerraformElement |
No description. |
isTerraformResource |
No description. |
generateConfigForImport |
Generates CDKTF code for importing a VaultSecretsRotatingSecret resource upon running "cdktf plan ". |
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
vaultSecretsRotatingSecret.VaultSecretsRotatingSecret.isConstruct(x: any)
Checks if x
is a construct.
Use this method instead of instanceof
to properly detect Construct
instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the constructs
library on
disk are seen as independent, completely different libraries. As a
consequence, the class Construct
in each copy of the constructs
library
is seen as a different class, and an instance of one class will not test as
instanceof
the other class. npm install
will not create installations
like this, but users may manually symlink construct libraries together or
use a monorepo tool: in those cases, multiple copies of the constructs
library can be accidentally installed, and instanceof
will behave
unpredictably. It is safest to avoid using instanceof
, and using
this type-testing method instead.
- Type: any
Any object.
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
vaultSecretsRotatingSecret.VaultSecretsRotatingSecret.isTerraformElement(x: any)
- Type: any
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
vaultSecretsRotatingSecret.VaultSecretsRotatingSecret.isTerraformResource(x: any)
- Type: any
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
vaultSecretsRotatingSecret.VaultSecretsRotatingSecret.generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: TerraformProvider)
Generates CDKTF code for importing a VaultSecretsRotatingSecret resource upon running "cdktf plan ".
- Type: constructs.Construct
The scope in which to define this construct.
- Type: string
The construct id used in the generated config for the VaultSecretsRotatingSecret to import.
- Type: string
The id of the existing VaultSecretsRotatingSecret that should be imported.
Refer to the {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#import import section} in the documentation of this resource for the id to use
- Type: cdktf.TerraformProvider
? Optional instance of the provider where the VaultSecretsRotatingSecret to import is found.
Name | Type | Description |
---|---|---|
node |
constructs.Node |
The tree node. |
cdktfStack |
cdktf.TerraformStack |
No description. |
fqn |
string |
No description. |
friendlyUniqueId |
string |
No description. |
terraformMetaArguments |
{[ key: string ]: any} |
No description. |
terraformResourceType |
string |
No description. |
terraformGeneratorMetadata |
cdktf.TerraformProviderGeneratorMetadata |
No description. |
connection |
cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection |
No description. |
count |
number | cdktf.TerraformCount |
No description. |
dependsOn |
string[] |
No description. |
forEach |
cdktf.ITerraformIterator |
No description. |
lifecycle |
cdktf.TerraformResourceLifecycle |
No description. |
provider |
cdktf.TerraformProvider |
No description. |
provisioners |
cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[] |
No description. |
awsAccessKeys |
VaultSecretsRotatingSecretAwsAccessKeysOutputReference |
No description. |
azureApplicationPassword |
VaultSecretsRotatingSecretAzureApplicationPasswordOutputReference |
No description. |
confluentServiceAccount |
VaultSecretsRotatingSecretConfluentServiceAccountOutputReference |
No description. |
gcpServiceAccountKey |
VaultSecretsRotatingSecretGcpServiceAccountKeyOutputReference |
No description. |
mongodbAtlasUser |
VaultSecretsRotatingSecretMongodbAtlasUserOutputReference |
No description. |
organizationId |
string |
No description. |
twilioApiKey |
VaultSecretsRotatingSecretTwilioApiKeyOutputReference |
No description. |
appNameInput |
string |
No description. |
awsAccessKeysInput |
cdktf.IResolvable | VaultSecretsRotatingSecretAwsAccessKeys |
No description. |
azureApplicationPasswordInput |
cdktf.IResolvable | VaultSecretsRotatingSecretAzureApplicationPassword |
No description. |
confluentServiceAccountInput |
cdktf.IResolvable | VaultSecretsRotatingSecretConfluentServiceAccount |
No description. |
gcpServiceAccountKeyInput |
cdktf.IResolvable | VaultSecretsRotatingSecretGcpServiceAccountKey |
No description. |
integrationNameInput |
string |
No description. |
mongodbAtlasUserInput |
cdktf.IResolvable | VaultSecretsRotatingSecretMongodbAtlasUser |
No description. |
nameInput |
string |
No description. |
projectIdInput |
string |
No description. |
rotationPolicyNameInput |
string |
No description. |
secretProviderInput |
string |
No description. |
twilioApiKeyInput |
cdktf.IResolvable | VaultSecretsRotatingSecretTwilioApiKey |
No description. |
appName |
string |
No description. |
integrationName |
string |
No description. |
name |
string |
No description. |
projectId |
string |
No description. |
rotationPolicyName |
string |
No description. |
secretProvider |
string |
No description. |
public readonly node: Node;
- Type: constructs.Node
The tree node.
public readonly cdktfStack: TerraformStack;
- Type: cdktf.TerraformStack
public readonly fqn: string;
- Type: string
public readonly friendlyUniqueId: string;
- Type: string
public readonly terraformMetaArguments: {[ key: string ]: any};
- Type: {[ key: string ]: any}
public readonly terraformResourceType: string;
- Type: string
public readonly terraformGeneratorMetadata: TerraformProviderGeneratorMetadata;
- Type: cdktf.TerraformProviderGeneratorMetadata
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
- Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection
public readonly count: number | TerraformCount;
- Type: number | cdktf.TerraformCount
public readonly dependsOn: string[];
- Type: string[]
public readonly forEach: ITerraformIterator;
- Type: cdktf.ITerraformIterator
public readonly lifecycle: TerraformResourceLifecycle;
- Type: cdktf.TerraformResourceLifecycle
public readonly provider: TerraformProvider;
- Type: cdktf.TerraformProvider
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
- Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]
public readonly awsAccessKeys: VaultSecretsRotatingSecretAwsAccessKeysOutputReference;
public readonly azureApplicationPassword: VaultSecretsRotatingSecretAzureApplicationPasswordOutputReference;
public readonly confluentServiceAccount: VaultSecretsRotatingSecretConfluentServiceAccountOutputReference;
public readonly gcpServiceAccountKey: VaultSecretsRotatingSecretGcpServiceAccountKeyOutputReference;
public readonly mongodbAtlasUser: VaultSecretsRotatingSecretMongodbAtlasUserOutputReference;
public readonly organizationId: string;
- Type: string
public readonly twilioApiKey: VaultSecretsRotatingSecretTwilioApiKeyOutputReference;
public readonly appNameInput: string;
- Type: string
public readonly awsAccessKeysInput: IResolvable | VaultSecretsRotatingSecretAwsAccessKeys;
- Type: cdktf.IResolvable | VaultSecretsRotatingSecretAwsAccessKeys
public readonly azureApplicationPasswordInput: IResolvable | VaultSecretsRotatingSecretAzureApplicationPassword;
- Type: cdktf.IResolvable | VaultSecretsRotatingSecretAzureApplicationPassword
public readonly confluentServiceAccountInput: IResolvable | VaultSecretsRotatingSecretConfluentServiceAccount;
- Type: cdktf.IResolvable | VaultSecretsRotatingSecretConfluentServiceAccount
public readonly gcpServiceAccountKeyInput: IResolvable | VaultSecretsRotatingSecretGcpServiceAccountKey;
- Type: cdktf.IResolvable | VaultSecretsRotatingSecretGcpServiceAccountKey
public readonly integrationNameInput: string;
- Type: string
public readonly mongodbAtlasUserInput: IResolvable | VaultSecretsRotatingSecretMongodbAtlasUser;
- Type: cdktf.IResolvable | VaultSecretsRotatingSecretMongodbAtlasUser
public readonly nameInput: string;
- Type: string
public readonly projectIdInput: string;
- Type: string
public readonly rotationPolicyNameInput: string;
- Type: string
public readonly secretProviderInput: string;
- Type: string
public readonly twilioApiKeyInput: IResolvable | VaultSecretsRotatingSecretTwilioApiKey;
- Type: cdktf.IResolvable | VaultSecretsRotatingSecretTwilioApiKey
public readonly appName: string;
- Type: string
public readonly integrationName: string;
- Type: string
public readonly name: string;
- Type: string
public readonly projectId: string;
- Type: string
public readonly rotationPolicyName: string;
- Type: string
public readonly secretProvider: string;
- Type: string
Name | Type | Description |
---|---|---|
tfResourceType |
string |
No description. |
public readonly tfResourceType: string;
- Type: string
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
const vaultSecretsRotatingSecretAwsAccessKeys: vaultSecretsRotatingSecret.VaultSecretsRotatingSecretAwsAccessKeys = { ... }
Name | Type | Description |
---|---|---|
iamUsername |
string |
AWS IAM username to rotate the access keys for. |
public readonly iamUsername: string;
- Type: string
AWS IAM username to rotate the access keys for.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#iam_username VaultSecretsRotatingSecret#iam_username}
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
const vaultSecretsRotatingSecretAzureApplicationPassword: vaultSecretsRotatingSecret.VaultSecretsRotatingSecretAzureApplicationPassword = { ... }
Name | Type | Description |
---|---|---|
appClientId |
string |
Application client ID to rotate the application password for. |
appObjectId |
string |
Application object ID to rotate the application password for. |
public readonly appClientId: string;
- Type: string
Application client ID to rotate the application password for.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#app_client_id VaultSecretsRotatingSecret#app_client_id}
public readonly appObjectId: string;
- Type: string
Application object ID to rotate the application password for.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#app_object_id VaultSecretsRotatingSecret#app_object_id}
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
const vaultSecretsRotatingSecretConfig: vaultSecretsRotatingSecret.VaultSecretsRotatingSecretConfig = { ... }
Name | Type | Description |
---|---|---|
connection |
cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection |
No description. |
count |
number | cdktf.TerraformCount |
No description. |
dependsOn |
cdktf.ITerraformDependable[] |
No description. |
forEach |
cdktf.ITerraformIterator |
No description. |
lifecycle |
cdktf.TerraformResourceLifecycle |
No description. |
provider |
cdktf.TerraformProvider |
No description. |
provisioners |
cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[] |
No description. |
appName |
string |
Vault Secrets application name that owns the secret. |
integrationName |
string |
The Vault Secrets integration name with the capability to manage the secret's lifecycle. |
name |
string |
The Vault Secrets secret name. |
rotationPolicyName |
string |
Name of the rotation policy that governs the rotation of the secret. |
secretProvider |
string |
The third party platform the dynamic credentials give access to. One of aws or gcp . |
awsAccessKeys |
VaultSecretsRotatingSecretAwsAccessKeys |
AWS configuration to manage the access key rotation for the given IAM user. Required if secret_provider is aws . |
azureApplicationPassword |
VaultSecretsRotatingSecretAzureApplicationPassword |
Azure configuration to manage the application password rotation for the given application. Required if secret_provider is Azure . |
confluentServiceAccount |
VaultSecretsRotatingSecretConfluentServiceAccount |
Confluent configuration to manage the cloud api key rotation for the given service account. Required if secret_provider is confluent . |
gcpServiceAccountKey |
VaultSecretsRotatingSecretGcpServiceAccountKey |
GCP configuration to manage the service account key rotation for the given service account. Required if secret_provider is gcp . |
mongodbAtlasUser |
VaultSecretsRotatingSecretMongodbAtlasUser |
MongoDB Atlas configuration to manage the user password rotation on the given database. Required if secret_provider is mongodb_atlas . |
projectId |
string |
HCP project ID that owns the HCP Vault Secrets integration. Inferred from the provider configuration if omitted. |
twilioApiKey |
VaultSecretsRotatingSecretTwilioApiKey |
Twilio configuration to manage the api key rotation on the given account. Required if secret_provider is twilio . |
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
- Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection
public readonly count: number | TerraformCount;
- Type: number | cdktf.TerraformCount
public readonly dependsOn: ITerraformDependable[];
- Type: cdktf.ITerraformDependable[]
public readonly forEach: ITerraformIterator;
- Type: cdktf.ITerraformIterator
public readonly lifecycle: TerraformResourceLifecycle;
- Type: cdktf.TerraformResourceLifecycle
public readonly provider: TerraformProvider;
- Type: cdktf.TerraformProvider
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
- Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]
public readonly appName: string;
- Type: string
Vault Secrets application name that owns the secret.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#app_name VaultSecretsRotatingSecret#app_name}
public readonly integrationName: string;
- Type: string
The Vault Secrets integration name with the capability to manage the secret's lifecycle.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#integration_name VaultSecretsRotatingSecret#integration_name}
public readonly name: string;
- Type: string
The Vault Secrets secret name.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#name VaultSecretsRotatingSecret#name}
public readonly rotationPolicyName: string;
- Type: string
Name of the rotation policy that governs the rotation of the secret.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#rotation_policy_name VaultSecretsRotatingSecret#rotation_policy_name}
public readonly secretProvider: string;
- Type: string
The third party platform the dynamic credentials give access to. One of aws
or gcp
.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#secret_provider VaultSecretsRotatingSecret#secret_provider}
public readonly awsAccessKeys: VaultSecretsRotatingSecretAwsAccessKeys;
AWS configuration to manage the access key rotation for the given IAM user. Required if secret_provider
is aws
.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#aws_access_keys VaultSecretsRotatingSecret#aws_access_keys}
public readonly azureApplicationPassword: VaultSecretsRotatingSecretAzureApplicationPassword;
Azure configuration to manage the application password rotation for the given application. Required if secret_provider
is Azure
.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#azure_application_password VaultSecretsRotatingSecret#azure_application_password}
public readonly confluentServiceAccount: VaultSecretsRotatingSecretConfluentServiceAccount;
Confluent configuration to manage the cloud api key rotation for the given service account. Required if secret_provider
is confluent
.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#confluent_service_account VaultSecretsRotatingSecret#confluent_service_account}
public readonly gcpServiceAccountKey: VaultSecretsRotatingSecretGcpServiceAccountKey;
GCP configuration to manage the service account key rotation for the given service account. Required if secret_provider
is gcp
.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#gcp_service_account_key VaultSecretsRotatingSecret#gcp_service_account_key}
public readonly mongodbAtlasUser: VaultSecretsRotatingSecretMongodbAtlasUser;
MongoDB Atlas configuration to manage the user password rotation on the given database. Required if secret_provider
is mongodb_atlas
.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#mongodb_atlas_user VaultSecretsRotatingSecret#mongodb_atlas_user}
public readonly projectId: string;
- Type: string
HCP project ID that owns the HCP Vault Secrets integration. Inferred from the provider configuration if omitted.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#project_id VaultSecretsRotatingSecret#project_id}
public readonly twilioApiKey: VaultSecretsRotatingSecretTwilioApiKey;
Twilio configuration to manage the api key rotation on the given account. Required if secret_provider
is twilio
.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#twilio_api_key VaultSecretsRotatingSecret#twilio_api_key}
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
const vaultSecretsRotatingSecretConfluentServiceAccount: vaultSecretsRotatingSecret.VaultSecretsRotatingSecretConfluentServiceAccount = { ... }
Name | Type | Description |
---|---|---|
serviceAccountId |
string |
Confluent service account to rotate the cloud api key for. |
public readonly serviceAccountId: string;
- Type: string
Confluent service account to rotate the cloud api key for.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#service_account_id VaultSecretsRotatingSecret#service_account_id}
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
const vaultSecretsRotatingSecretGcpServiceAccountKey: vaultSecretsRotatingSecret.VaultSecretsRotatingSecretGcpServiceAccountKey = { ... }
Name | Type | Description |
---|---|---|
serviceAccountEmail |
string |
GCP service account email to impersonate. |
public readonly serviceAccountEmail: string;
- Type: string
GCP service account email to impersonate.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#service_account_email VaultSecretsRotatingSecret#service_account_email}
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
const vaultSecretsRotatingSecretMongodbAtlasUser: vaultSecretsRotatingSecret.VaultSecretsRotatingSecretMongodbAtlasUser = { ... }
Name | Type | Description |
---|---|---|
databaseName |
string |
MongoDB Atlas database or cluster name to rotate the username and password for. |
projectId |
string |
MongoDB Atlas project ID to rotate the username and password for. |
roles |
string[] |
MongoDB Atlas roles to assign to the rotating user. |
public readonly databaseName: string;
- Type: string
MongoDB Atlas database or cluster name to rotate the username and password for.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#database_name VaultSecretsRotatingSecret#database_name}
public readonly projectId: string;
- Type: string
MongoDB Atlas project ID to rotate the username and password for.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#project_id VaultSecretsRotatingSecret#project_id}
public readonly roles: string[];
- Type: string[]
MongoDB Atlas roles to assign to the rotating user.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/hcp/0.101.0/docs/resources/vault_secrets_rotating_secret#roles VaultSecretsRotatingSecret#roles}
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
const vaultSecretsRotatingSecretTwilioApiKey: vaultSecretsRotatingSecret.VaultSecretsRotatingSecretTwilioApiKey = { ... }
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
new vaultSecretsRotatingSecret.VaultSecretsRotatingSecretAwsAccessKeysOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
iamUsernameInput |
string |
No description. |
iamUsername |
string |
No description. |
internalValue |
cdktf.IResolvable | VaultSecretsRotatingSecretAwsAccessKeys |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly iamUsernameInput: string;
- Type: string
public readonly iamUsername: string;
- Type: string
public readonly internalValue: IResolvable | VaultSecretsRotatingSecretAwsAccessKeys;
- Type: cdktf.IResolvable | VaultSecretsRotatingSecretAwsAccessKeys
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
new vaultSecretsRotatingSecret.VaultSecretsRotatingSecretAzureApplicationPasswordOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
appClientIdInput |
string |
No description. |
appObjectIdInput |
string |
No description. |
appClientId |
string |
No description. |
appObjectId |
string |
No description. |
internalValue |
cdktf.IResolvable | VaultSecretsRotatingSecretAzureApplicationPassword |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly appClientIdInput: string;
- Type: string
public readonly appObjectIdInput: string;
- Type: string
public readonly appClientId: string;
- Type: string
public readonly appObjectId: string;
- Type: string
public readonly internalValue: IResolvable | VaultSecretsRotatingSecretAzureApplicationPassword;
- Type: cdktf.IResolvable | VaultSecretsRotatingSecretAzureApplicationPassword
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
new vaultSecretsRotatingSecret.VaultSecretsRotatingSecretConfluentServiceAccountOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
serviceAccountIdInput |
string |
No description. |
serviceAccountId |
string |
No description. |
internalValue |
cdktf.IResolvable | VaultSecretsRotatingSecretConfluentServiceAccount |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly serviceAccountIdInput: string;
- Type: string
public readonly serviceAccountId: string;
- Type: string
public readonly internalValue: IResolvable | VaultSecretsRotatingSecretConfluentServiceAccount;
- Type: cdktf.IResolvable | VaultSecretsRotatingSecretConfluentServiceAccount
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
new vaultSecretsRotatingSecret.VaultSecretsRotatingSecretGcpServiceAccountKeyOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
serviceAccountEmailInput |
string |
No description. |
serviceAccountEmail |
string |
No description. |
internalValue |
cdktf.IResolvable | VaultSecretsRotatingSecretGcpServiceAccountKey |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly serviceAccountEmailInput: string;
- Type: string
public readonly serviceAccountEmail: string;
- Type: string
public readonly internalValue: IResolvable | VaultSecretsRotatingSecretGcpServiceAccountKey;
- Type: cdktf.IResolvable | VaultSecretsRotatingSecretGcpServiceAccountKey
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
new vaultSecretsRotatingSecret.VaultSecretsRotatingSecretMongodbAtlasUserOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
databaseNameInput |
string |
No description. |
projectIdInput |
string |
No description. |
rolesInput |
string[] |
No description. |
databaseName |
string |
No description. |
projectId |
string |
No description. |
roles |
string[] |
No description. |
internalValue |
cdktf.IResolvable | VaultSecretsRotatingSecretMongodbAtlasUser |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly databaseNameInput: string;
- Type: string
public readonly projectIdInput: string;
- Type: string
public readonly rolesInput: string[];
- Type: string[]
public readonly databaseName: string;
- Type: string
public readonly projectId: string;
- Type: string
public readonly roles: string[];
- Type: string[]
public readonly internalValue: IResolvable | VaultSecretsRotatingSecretMongodbAtlasUser;
- Type: cdktf.IResolvable | VaultSecretsRotatingSecretMongodbAtlasUser
import { vaultSecretsRotatingSecret } from '@cdktf/provider-hcp'
new vaultSecretsRotatingSecret.VaultSecretsRotatingSecretTwilioApiKeyOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
internalValue |
cdktf.IResolvable | VaultSecretsRotatingSecretTwilioApiKey |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly internalValue: IResolvable | VaultSecretsRotatingSecretTwilioApiKey;
- Type: cdktf.IResolvable | VaultSecretsRotatingSecretTwilioApiKey