Created
June 4, 2022 03:42
-
-
Save cromyhector/886598a72aa3c8b55970e5a483188437 to your computer and use it in GitHub Desktop.
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
### --- ec2/variables.tf --- | |
variable "region" { | |
description = "The region where the instance will be deployed to" | |
type = string | |
default = "us-east-1" | |
} | |
variable "ami" { | |
description = "AMI ID" | |
type = string | |
default = "ami-0022f774911c1d690" | |
} | |
variable "instance_type" { | |
description = "Type of instance" | |
type = string | |
default = "t2.micro" | |
} | |
variable "tag_name" { | |
description = "Name of instance" | |
type = string | |
default = "ExampleAppServerInstance" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment