14 lines
325 B
HCL
14 lines
325 B
HCL
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"
|
|
}
|