| page_title | subcategory | description |
|---|---|---|
stackit_secretsmanager_user Resource - stackit |
Secrets Manager user resource schema. Must have a region specified in the provider configuration. |
Secrets Manager user resource schema. Must have a region specified in the provider configuration.
resource "stackit_secretsmanager_user" "example" {
project_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
instance_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
description = "Example user"
write_enabled = false
}
# Only use the import statement, if you want to import an existing secretsmanager user
import {
to = stackit_secretsmanager_user.import-example
id = "${var.project_id},${var.secret_instance_id},${var.secret_user_id}"
}description(String) A user chosen description to differentiate between multiple users. Can't be changed after creation.instance_id(String) ID of the Secrets Manager instance.project_id(String) STACKIT Project ID to which the instance is associated.write_enabled(Boolean) If true, the user has writeaccess to the secrets engine.
id(String) Terraform's internal resource identifier. It is structured as "project_id,instance_id,user_id".password(String, Sensitive) An auto-generated password.user_id(String) The user's ID.username(String) An auto-generated user name.