Difference between revisions of "Terraform resource: kubernetes namespace"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
 
https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs/resources/namespace
 
https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs/resources/namespace
  
 +
* name - (Optional) Name of the namespace, must be unique. Cannot be updated
 +
 +
== Official examples ==
 +
resource "kubernetes_namespace" "example" {
 +
  metadata {
 +
    annotations = {
 +
      name = "example-annotation"
 +
    }
 +
 +
    labels = {
 +
      mylabel = "label-value"
 +
    }
  
* name - (Optional) Name of the namespace, must be unique. Cannot be updated
+
    name = "terraform-example-namespace"
 +
  }
 +
}
  
 
== See also ==
 
== See also ==

Revision as of 11:24, 26 January 2024

https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs/resources/namespace

  • name - (Optional) Name of the namespace, must be unique. Cannot be updated

Official examples

resource "kubernetes_namespace" "example" {
 metadata {
   annotations = {
     name = "example-annotation"
   }
   labels = {
     mylabel = "label-value"
   }
   name = "terraform-example-namespace"
 }
}

See also

Advertising: