Skip to content

Instantly share code, notes, and snippets.

@amaurybsouza
Created March 8, 2022 11:36
Show Gist options
  • Save amaurybsouza/5b19cbb75ca43ff48e5750ac145da5b0 to your computer and use it in GitHub Desktop.
Save amaurybsouza/5b19cbb75ca43ff48e5750ac145da5b0 to your computer and use it in GitHub Desktop.
variables.tf
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