Files
getting-started/aws/aws-terraform/aws-app-stack-modules/modules/application/variables.tf
2021-04-16 16:01:29 +04:00

16 lines
313 B
HCL

variable "ec2_instance_type" {
description = "Instance type"
type = string
}
variable "ami" {
description = "ami id"
type = string
}
variable "tags" {
description = "Tags to set on the bucket."
type = map(string)
default = {Name = "server for web"
Env = "dev"}
}