20 lines
274 B
HCL
20 lines
274 B
HCL
variable "region" {
|
|
type = string
|
|
default = "eu-west-1"
|
|
}
|
|
|
|
variable "env" {
|
|
type = string
|
|
default = "dev"
|
|
}
|
|
|
|
variable "redirect_url" {
|
|
type = string
|
|
default = "https://nfc.standout.it/dev"
|
|
}
|
|
|
|
variable "git_version" {
|
|
type = string
|
|
default = "00000000"
|
|
}
|