Skip to content

Instantly share code, notes, and snippets.

@mtcoffee
Created December 10, 2023 17:14
Show Gist options
  • Save mtcoffee/5ccd59eadd7c024046fab152a291d118 to your computer and use it in GitHub Desktop.
Save mtcoffee/5ccd59eadd7c024046fab152a291d118 to your computer and use it in GitHub Desktop.
terraform_aws_windows_ec2_t2micro_variables
variable "access_key" {
description = "Access key to AWS console"
}
variable "secret_key" {
description = "Secret key to AWS console"
}
variable "instance_name" {
description = "Name of the instance to be created"
default = "tfbuild"
}
variable "instance_type" {
default = "t2.micro"
}
variable "ami_id" {
description = "The AMI to use"
default = "ami-091f300417a06d788"
}
variable "ami_key_pair_name" {
default = "my_ec2keypair"
}
variable "pem_file" {
default = "my_private_pem"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment