1
0
Fork 0

kubernetes

This commit is contained in:
Cedric Girard 2020-05-15 12:42:46 +02:00
parent 18c4858bea
commit af71156066
Signed by: X-dark
GPG Key ID: E7D0E125DB9519E4
1 changed files with 10 additions and 0 deletions

10
11_kubernetes/base.tf Normal file
View File

@ -0,0 +1,10 @@
provider "kubernetes" {
load_config_file = false
host = "http://127.0.0.1:8001"
}
resource "kubernetes_namespace" "example" {
metadata {
name = "my-first-namespace"
}
}