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