aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.terraform/1n_nmd/prometheus/fdio
diff options
context:
space:
mode:
Diffstat (limited to 'fdio.infra.terraform/1n_nmd/prometheus/fdio')
-rw-r--r--fdio.infra.terraform/1n_nmd/prometheus/fdio/main.tf10
-rw-r--r--fdio.infra.terraform/1n_nmd/prometheus/fdio/providers.tf13
-rw-r--r--fdio.infra.terraform/1n_nmd/prometheus/fdio/variables.tf47
-rw-r--r--fdio.infra.terraform/1n_nmd/prometheus/fdio/versions.tf17
4 files changed, 0 insertions, 87 deletions
diff --git a/fdio.infra.terraform/1n_nmd/prometheus/fdio/main.tf b/fdio.infra.terraform/1n_nmd/prometheus/fdio/main.tf
deleted file mode 100644
index e0ca417a78..0000000000
--- a/fdio.infra.terraform/1n_nmd/prometheus/fdio/main.tf
+++ /dev/null
@@ -1,10 +0,0 @@
-module "prometheus" {
- providers = {
- nomad = nomad.yul1
- }
- source = "../"
-
- # prometheus
- datacenters = ["yul1"]
- pm_version = "2.33.1"
-} \ No newline at end of file
diff --git a/fdio.infra.terraform/1n_nmd/prometheus/fdio/providers.tf b/fdio.infra.terraform/1n_nmd/prometheus/fdio/providers.tf
deleted file mode 100644
index 42a6a45ce0..0000000000
--- a/fdio.infra.terraform/1n_nmd/prometheus/fdio/providers.tf
+++ /dev/null
@@ -1,13 +0,0 @@
-provider "nomad" {
- address = var.nomad_provider_address
- alias = "yul1"
- # ca_file = var.nomad_provider_ca_file
- # cert_file = var.nomad_provider_cert_file
- # key_file = var.nomad_provider_key_file
-}
-
-provider "vault" {
- address = var.vault_provider_address
- skip_tls_verify = var.vault_provider_skip_tls_verify
- token = var.vault_provider_token
-} \ No newline at end of file
diff --git a/fdio.infra.terraform/1n_nmd/prometheus/fdio/variables.tf b/fdio.infra.terraform/1n_nmd/prometheus/fdio/variables.tf
deleted file mode 100644
index 7d5be09d21..0000000000
--- a/fdio.infra.terraform/1n_nmd/prometheus/fdio/variables.tf
+++ /dev/null
@@ -1,47 +0,0 @@
-variable "nomad_acl" {
- description = "Nomad ACLs enabled/disabled."
- type = bool
- default = false
-}
-
-variable "nomad_provider_address" {
- description = "FD.io Nomad cluster address."
- type = string
- default = "http://10.32.8.14:4646"
-}
-
-variable "nomad_provider_ca_file" {
- description = "A local file path to a PEM-encoded certificate authority."
- type = string
- default = "/etc/nomad.d/ssl/nomad-ca.pem"
-}
-
-variable "nomad_provider_cert_file" {
- description = "A local file path to a PEM-encoded certificate."
- type = string
- default = "/etc/nomad.d/ssl/nomad-cli.pem"
-}
-
-variable "nomad_provider_key_file" {
- description = "A local file path to a PEM-encoded private key."
- type = string
- default = "/etc/nomad.d/ssl/nomad-cli-key.pem"
-}
-
-variable "vault_provider_address" {
- description = "Vault cluster address."
- type = string
- default = "http://10.30.51.28:8200"
-}
-
-variable "vault_provider_skip_tls_verify" {
- description = "Verification of the Vault server's TLS certificate."
- type = bool
- default = false
-}
-
-variable "vault_provider_token" {
- description = "Vault root token."
- type = string
- sensitive = true
-} \ No newline at end of file
diff --git a/fdio.infra.terraform/1n_nmd/prometheus/fdio/versions.tf b/fdio.infra.terraform/1n_nmd/prometheus/fdio/versions.tf
deleted file mode 100644
index f83709d154..0000000000
--- a/fdio.infra.terraform/1n_nmd/prometheus/fdio/versions.tf
+++ /dev/null
@@ -1,17 +0,0 @@
-terraform {
- backend "consul" {
- address = "10.32.8.14:8500"
- scheme = "http"
- path = "terraform/prometheus"
- }
- required_providers {
- nomad = {
- source = "hashicorp/nomad"
- version = ">= 1.4.16"
- }
- vault = {
- version = ">= 3.2.1"
- }
- }
- required_version = ">= 1.1.4"
-} \ No newline at end of file