mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-07 14:03:01 +07:00
12 lines
295 B
Terraform
12 lines
295 B
Terraform
|
resource "kubernetes_secret" "terraform_secrets" {
|
||
|
metadata {
|
||
|
name = "terraform-secrets"
|
||
|
namespace = "tekton-pipelines"
|
||
|
}
|
||
|
|
||
|
data = {
|
||
|
"credentials.tfrc.json" = file("~/.terraform.d/credentials.tfrc.json")
|
||
|
"terraform.tfvars" = file("${path.root}/terraform.tfvars")
|
||
|
}
|
||
|
}
|