Files
2019-10-30 16:05:22 +01:00

13 lines
212 B
Terraform

variable "AWS_REGION" {
type = string
default = "eu-west-1"
}
variable "ports" {
type = map(list(string))
default = {
"22" = [ "127.0.0.1/32", "192.168.0.0/24" ]
"443" = [ "0.0.0.0/0" ]
}
}