diff options
author | Peter Mikus <pmikus@cisco.com> | 2022-02-09 09:58:09 +0100 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2022-02-09 08:59:07 +0000 |
commit | 0bbb81c4fd1afdee6eb23ba4d49171d8dced6b19 (patch) | |
tree | cf806d4fdcad01bcf8115f6784847f0fdc765363 /fdio.infra.terraform/1n_nmd/alertmanager/fdio/variables.tf | |
parent | 0576c4293e05b1eded486b48a217495451a8b685 (diff) |
feat(terraform): Refactor Alertmanager
- prepare for ETL
Signed-off-by: Peter Mikus <pmikus@cisco.com>
Change-Id: I8931f76f78b5acee39716398b92e4b107d399773
Diffstat (limited to 'fdio.infra.terraform/1n_nmd/alertmanager/fdio/variables.tf')
-rw-r--r-- | fdio.infra.terraform/1n_nmd/alertmanager/fdio/variables.tf | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/fdio.infra.terraform/1n_nmd/alertmanager/fdio/variables.tf b/fdio.infra.terraform/1n_nmd/alertmanager/fdio/variables.tf new file mode 100644 index 0000000000..7d5be09d21 --- /dev/null +++ b/fdio.infra.terraform/1n_nmd/alertmanager/fdio/variables.tf @@ -0,0 +1,47 @@ +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 |