17 lines
261 B
HCL
17 lines
261 B
HCL
|
|
variable "region" {
|
|
description = "AWS region"
|
|
type = string
|
|
default = "eu-west-2"
|
|
}
|
|
|
|
variable "public_ip" {
|
|
description = "The public IP address for mealcraft.com"
|
|
type = string
|
|
default = "change it in github secrets"
|
|
}
|
|
|
|
|
|
|
|
|
|
|