Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nivleshc/4341c344e7e233a04f3da38084a8b8d6 to your computer and use it in GitHub Desktop.

Select an option

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.
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