infrastructure/terraform/vault.tf

14 lines
309 B
Terraform
Raw Normal View History

2021-10-17 16:36:51 +02:00
provider "vault" {
2021-11-24 22:41:26 +01:00
address = "http://vault:8200"
2021-10-17 16:36:51 +02:00
skip_tls_verify = true
}
# Proxmox authentication for terraform
data "vault_generic_secret" "proxmox_auth" {
2021-11-24 22:41:26 +01:00
path = "secrets/terraform/proxmox_credentials"
2021-10-17 16:36:51 +02:00
}
2021-11-24 23:03:04 +01:00
data "vault_generic_secret" "minio_auth" {
path = "secrets/terraform/minio_credentials"
}