infra/tf/providers.tf

15 lines
325 B
Terraform
Raw Normal View History

data "terraform_remote_state" "foo" {
backend = "kubernetes"
config = {
secret_suffix = "state"
namespace = "tofu"
config_path = "../.kubeconfig"
}
}
provider "vault" {
# This will default to using $VAULT_ADDR
# But can be set explicitly
# address = "https://vault.example.net:8200"
}