diff --git a/terraform/modules/aws-iam-user-with-policy/variables.tf b/terraform/modules/aws-iam-user-with-policy/variables.tf index 27f0643..a40095b 100644 --- a/terraform/modules/aws-iam-user-with-policy/variables.tf +++ b/terraform/modules/aws-iam-user-with-policy/variables.tf @@ -1,7 +1,9 @@ variable "name" { + type = string description = "Project name, required to form unique resource names" } variable "policy" { + type = string description = "IAM policy that will be attached to user" }