Initial commit
This commit is contained in:
20
terraform/namespaces.tf
Normal file
20
terraform/namespaces.tf
Normal file
@@ -0,0 +1,20 @@
|
||||
# Create namespaces using Terraform
|
||||
# This makes sure the zones 'core', 'nearle', 'alaska' are always present and correctly labeled.
|
||||
|
||||
resource "kubernetes_namespace" "core" {
|
||||
metadata {
|
||||
name = "core"
|
||||
}
|
||||
}
|
||||
|
||||
resource "kubernetes_namespace" "nearle" {
|
||||
metadata {
|
||||
name = "nearle"
|
||||
}
|
||||
}
|
||||
|
||||
resource "kubernetes_namespace" "alaska" {
|
||||
metadata {
|
||||
name = "alaska"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user