39 lines
818 B
HCL
39 lines
818 B
HCL
variable "app_namespace" {
|
|
description = "Namespace that the application runs in"
|
|
type = string
|
|
}
|
|
|
|
variable "cfa_name" {
|
|
description = "Name of the CFA"
|
|
type = string
|
|
}
|
|
|
|
variable "app_name" {
|
|
description = "Name of the application"
|
|
type = string
|
|
}
|
|
|
|
variable "team_name" {
|
|
description = "Name of the responsible team"
|
|
type = string
|
|
}
|
|
|
|
variable "image_name" {
|
|
description = "Name of the Docker Image"
|
|
type = string
|
|
}
|
|
variable "region" {
|
|
description = "Defines the AWS region where the resources are located"
|
|
type = string
|
|
}
|
|
|
|
variable "stage" {
|
|
description = "Specifies the stage to monitor (dev, tst, stg, prd)"
|
|
type = string
|
|
}
|
|
|
|
variable "url" {
|
|
description = "Specifies the URL for datadogi Synthetics to monitor"
|
|
type = string
|
|
}
|