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

11 lines
284 B
HCL

variable "assume_role_account_names" {
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
}