15 lines
325 B
Terraform
15 lines
325 B
Terraform
|
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"
|
||
|
}
|