terraform.aws-baseline-infra/modules/security_identity_compliance/iam-user/variables.tf

20 lines
357 B
Terraform
Raw Normal View History

variable "iam-user-name" {}
variable "iam-user-policy" {
type = string
default = ""
}
variable "iam-user-policy-name" {
type = string
default = ""
}
variable "create-access-key" {
2022-09-15 16:31:30 +08:00
type = bool
}
variable "create-password" {
2022-09-15 16:31:30 +08:00
type = bool
}
variable "managed-policy-arns" {}
variable "add-to-groups" {
type = list(string)
2022-09-16 10:37:28 +08:00
default = []
}