feat(module): initial import

This commit is contained in:
Julien Dessaux 2025-04-10 13:01:01 +02:00
commit 336e7703d6
Signed by: adyxax
GPG key ID: F92E51B86E07177E
8 changed files with 400 additions and 0 deletions

12
variables.tf Normal file
View file

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