Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nivleshc/d837d72bd5a35b869f2bc1b7904da224 to your computer and use it in GitHub Desktop.
Save nivleshc/d837d72bd5a35b869f2bc1b7904da224 to your computer and use it in GitHub Desktop.
Contents of grafana/variables.tf from the visualise-network-traffic repository.
variable "grafana_server_details" {
description = "Configuration details for the Grafana Server"
type = object({
ami_id = string
instance_type = string
key_name = string
vpc_id = string
subnet_id = string
admin_username = string
admin_password = string
data_source = object({
type = string
name = string
uid = string
org_id = number
auth_type = string
default_log_group_name = string
traffic_dest_cidr = string
})
tags = map(string)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment