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

12 lines
268 B
HCL

variable "name" {
description = "The IAM role's name."
nullable = false
type = string
}
variable "policy_statements" {
default = "[]"
description = "A JSON encoded list of AWS policy statements."
nullable = false
type = string
}