terraform-modules/grafana/datasource/variables.tf

18 lines
No EOL
271 B
HCL

# Grafana contact point
variable "datasource_url" {
type = string
}
variable "datasource_name" {
type = string
}
variable "datasource_username" {
type = string
sensitive = true
}
variable "datasource_password" {
type = string
sensitive = true
}