tofu-module-aws-iam-user/variables.tf

12 lines
303 B
HCL

variable "assume_role_account_names" {
default = []
description = "The names of the AWS sub-accounts this IAM user can assume roles in."
nullable = false
type = list(string)
}
variable "name" {
description = "The IAM user's name."
nullable = false
type = string
}