Skip to content

Instantly share code, notes, and snippets.

@anthonysnk
Created June 5, 2021 01:31
Show Gist options
  • Save anthonysnk/aac998e2d35f765fe1e6b986a90dc2a3 to your computer and use it in GitHub Desktop.
Save anthonysnk/aac998e2d35f765fe1e6b986a90dc2a3 to your computer and use it in GitHub Desktop.
Terraform varibales
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