From 20c7496038d5285c820085b4d24fb156a5e722e2 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Sun, 10 Nov 2024 03:27:43 -0700 Subject: [PATCH] add prefix/suffix variables --- variables.tf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/variables.tf b/variables.tf index 4aa841a..3c60b75 100644 --- a/variables.tf +++ b/variables.tf @@ -52,3 +52,13 @@ variable "aws_secret_key" { type = string sensitive = true } +variable "name_prefix" { + description = "The prefix for all your resources" + default = "demostar" + type = string +} + +variable "name_suffix" { + description = "The suffix for all your resources, suggest generating a unique value for each deployment" + type = string +}