Created
September 20, 2025 09:34
-
-
Save nivleshc/4341c344e7e233a04f3da38084a8b8d6 to your computer and use it in GitHub Desktop.
This gist contains code from the file variables.tf, which is part of the blog-aws-service-catalog-for-terraform-products repository.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| variable "aws_region" { | |
| type = string | |
| description = "The AWS Region that the resources will be deployed inot" | |
| default = "ap-southeast-2" | |
| } | |
| variable "environment" { | |
| type = string | |
| description = "Deployment environment (e.g., dev, staging, prod)" | |
| default = "dev" | |
| } | |
| variable "resource_prefix" { | |
| type = string | |
| description = "The prefix to use with all the resources" | |
| default = "service-catalog" | |
| } | |
| variable "s3BucketName" { | |
| type = string | |
| description = "The name to use for the Amazon S3 bucket. This will be suffixed with the environment name" | |
| default = "" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment