diff --git a/modules/chat_bot_topic_arn/create/main.tf b/modules/chat_bot_topic_arn/create/main.tf index cecc379..e3d3c3d 100644 --- a/modules/chat_bot_topic_arn/create/main.tf +++ b/modules/chat_bot_topic_arn/create/main.tf @@ -1,6 +1,7 @@ module "naming_conventions" { source = "fivexl/naming-convetions/aws" version = "0.0.1" + environment = var.environment } module "shared_kms_key_arn" { diff --git a/modules/chat_bot_topic_arn/create/variables.tf b/modules/chat_bot_topic_arn/create/variables.tf index 1da028a..7e42093 100644 --- a/modules/chat_bot_topic_arn/create/variables.tf +++ b/modules/chat_bot_topic_arn/create/variables.tf @@ -8,3 +8,7 @@ variable "tags" { type = map(string) } +variable "environment" { + description = "The environment name: dev, stage, prod, for the generation of the ram resource share name" + type = string +}