Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 1.56 KB

File metadata and controls

45 lines (35 loc) · 1.56 KB
page_title subcategory description
stackit_secretsmanager_user Resource - stackit
Secrets Manager user resource schema. Must have a region specified in the provider configuration.

stackit_secretsmanager_user (Resource)

Secrets Manager user resource schema. Must have a region specified in the provider configuration.

Example Usage

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}"
}

Schema

Required

  • 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.

Read-Only

  • 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.