Created
March 8, 2022 11:36
-
-
Save amaurybsouza/5b19cbb75ca43ff48e5750ac145da5b0 to your computer and use it in GitHub Desktop.
variables.tf
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 "app_region" { | |
description = "what instance type I can use" | |
type = string | |
} | |
variable "ami" { | |
description = "what subnet_id I can use" | |
type = string | |
} | |
variable "ssh_user" { | |
description = "my ssh_user" | |
default = "ubuntu" | |
} | |
variable "key_name" { | |
description = "my key_name" | |
default = "mylab" | |
} | |
variable "private_key_path" { | |
description = "my private_key_path" | |
default = "/home/amaury/mylab.pem" | |
} | |
variable "subnet_id" { | |
description = "my subnet_id" | |
default = "subnet-cb298bfn" | |
} | |
variable "vpc_id" { | |
description = "my vpc_id" | |
default = "vpc-68e04a13" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment