feat(module): initial import
All checks were successful
main / test (push) Successful in 56s

This commit is contained in:
Julien Dessaux 2025-04-10 23:46:01 +02:00
commit e2691f89e7
Signed by: adyxax
GPG key ID: F92E51B86E07177E
14 changed files with 553 additions and 0 deletions

19
variables.tf Normal file
View file

@ -0,0 +1,19 @@
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
}