infra/tf/providers.tf

11 lines
204 B
Terraform
Raw Normal View History

data "terraform_remote_state" "foo" {
backend = "kubernetes"
config = {
secret_suffix = "state"
namespace = "tofu"
config_path = "../.kubeconfig"
}
}
2024-09-10 17:36:12 +00:00
provider "vault" {}