1
0
Files
terraform.examples/modules/security_identity_compliance/iam-user/variables.tf
T
2026-02-13 15:44:24 +08:00

20 lines
357 B
Terraform

variable "iam-user-name" {}
variable "iam-user-policy" {
type = string
default = ""
}
variable "iam-user-policy-name" {
type = string
default = ""
}
variable "create-access-key" {
type = bool
}
variable "create-password" {
type = bool
}
variable "managed-policy-arns" {}
variable "add-to-groups" {
type = list(string)
default = []
}