aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.terraform/1n_nmd/grafana/variables.tf
diff options
context:
space:
mode:
authorPeter Mikus <pmikus@cisco.com>2022-07-08 09:55:27 +0000
committerPeter Mikus <pmikus@cisco.com>2022-07-08 09:55:27 +0000
commit323418862f22e5f057bd9c03432974fe5f139a8a (patch)
tree92b1720503d0aff4036c1d78a8eebb9fd330d95f /fdio.infra.terraform/1n_nmd/grafana/variables.tf
parentf60636c0db68b0d889cdd4c747cf628f396af963 (diff)
feat(terraform): Remove unused services
Signed-off-by: Peter Mikus <pmikus@cisco.com> Change-Id: I3a1d4c37c7ab852ef34114afd47e45ede37b65ec
Diffstat (limited to 'fdio.infra.terraform/1n_nmd/grafana/variables.tf')
-rw-r--r--fdio.infra.terraform/1n_nmd/grafana/variables.tf66
1 files changed, 0 insertions, 66 deletions
diff --git a/fdio.infra.terraform/1n_nmd/grafana/variables.tf b/fdio.infra.terraform/1n_nmd/grafana/variables.tf
deleted file mode 100644
index 88f8bdade1..0000000000
--- a/fdio.infra.terraform/1n_nmd/grafana/variables.tf
+++ /dev/null
@@ -1,66 +0,0 @@
-# Nomad
-variable "nomad_datacenters" {
- description = "Nomad data centers"
- type = list(string)
- default = ["dc1"]
-}
-
-# Grafana
-variable "grafana_job_name" {
- description = "Grafana job name"
- type = string
- default = "grafana"
-}
-
-variable "grafana_group_count" {
- description = "Number of grafana group instances"
- type = number
- default = 1
-}
-
-variable "grafana_service_name" {
- description = "Grafana service name"
- type = string
- default = "grafana"
-}
-
-variable "grafana_container_image" {
- description = "Grafana docker image"
- type = string
- default = "grafana/grafana:7.3.7"
-}
-
-variable "grafana_use_canary" {
- description = "Uses canary deployment"
- type = bool
- default = false
-}
-
-variable "grafana_vault_secret" {
- description = "Set of properties to be able to fetch secret from vault"
- type = object({
- use_vault_provider = bool,
- vault_kv_policy_name = string,
- vault_kv_path = string,
- vault_kv_field_access_key = string,
- vault_kv_field_secret_key = string
- })
-}
-
-variable "grafana_cpu" {
- description = "Grafana CPU allocation"
- type = number
- default = 2000
-}
-
-variable "grafana_mem" {
- description = "Grafana RAM allocation"
- type = number
- default = 8192
-}
-
-variable "grafana_port" {
- description = "Grafana TCP allocation"
- type = number
- default = 3000
-} \ No newline at end of file