33 lines
674 B
HCL
33 lines
674 B
HCL
variable "environment" {
|
|
default = "prod"
|
|
}
|
|
|
|
variable "openweather_secret" {
|
|
description = "open weather api secret"
|
|
sensitive = true
|
|
}
|
|
variable "S3_key_secret" {
|
|
description = "S3 backend key secret"
|
|
sensitive = true
|
|
}
|
|
variable "S3_endpoint" {
|
|
default = "s3.localdomain"
|
|
description = "S3 backend endpoint"
|
|
}
|
|
variable "S3_region" {
|
|
default = "FR"
|
|
description = "S3 backend region"
|
|
}
|
|
variable "S3_key_id" {
|
|
default = "antoine"
|
|
description = "S3 backend key id"
|
|
}
|
|
|
|
variable "poller_version" {
|
|
default = "latest"
|
|
description = "poller container version"
|
|
}
|
|
variable "weather_version" {
|
|
default = "latest"
|
|
description = "poller container version"
|
|
} |