Created
June 5, 2021 01:31
-
-
Save anthonysnk/aac998e2d35f765fe1e6b986a90dc2a3 to your computer and use it in GitHub Desktop.
Terraform varibales
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 | |
default = "us-east-1" | |
description = "Set up our region, that we want to use" | |
} | |
variable "project_name" { | |
description = "Project's Names" | |
type = string | |
} | |
variable "bundle_id" { | |
type = string | |
default = "nano_2_0" | |
description = "Options for instance size" | |
} | |
variable "lightsail_blueprints" { | |
type = map(string) | |
description = "The ID for a virtual private server image. A list of available blueprint AWS CLI command: aws lightsail get-blueprints" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment