feat(module): initial import

This commit is contained in:
Julien Dessaux 2025-04-10 12:37:36 +02:00
commit a046131bd2
Signed by: adyxax
GPG key ID: F92E51B86E07177E
8 changed files with 415 additions and 0 deletions

11
variables.tf Normal file
View file

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