tofu-module-aws-iam-ci-user/variables.tf
Julien Dessaux e2691f89e7
All checks were successful
main / test (push) Successful in 56s
feat(module): initial import
2025-04-11 11:14:41 +02:00

19 lines
522 B
HCL

variable "core_policy_statements" {
default = "[]"
description = "The JSON encoded list of AWS policy statements for the role in the core AWS account."
nullable = false
type = string
}
variable "name" {
description = "The IAM user's name."
nullable = false
type = string
}
variable "tests_policy_statements" {
default = "[]"
description = "The JSON encoded list of AWS policy statements for the role in the tests AWS account."
nullable = false
type = string
}