cluster through terraform now

This commit is contained in:
shockrah 2024-04-24 00:18:03 -07:00
parent 65e8ed0186
commit 0f7f95a1b0
4 changed files with 14 additions and 0 deletions

6
lab/cluster/.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
kubeconfig.yaml
.terraform*
terraform.tfstate.backup
terraform.tfstate
tfplan

5
lab/cluster/namespace.tf Normal file
View File

@ -0,0 +1,5 @@
resource kubernetes_namespace vault {
metadata {
name = "vault"
}
}

3
lab/cluster/provider.tf Normal file
View File

@ -0,0 +1,3 @@
provider "kubernetes" {
config_path = "./kubeconfig.yaml"
}

0
lab/cluster/readme Normal file
View File