kubernetes_priority_class

A PriorityClass is a non-namespaced object that defines a mapping from a priority class name to the integer value of the priority.

Example Usage

resource "kubernetes_priority_class" "example" {
  metadata {
    name = "terraform-example"
  }

  value = 100
}

Argument Reference

The following arguments are supported:

Nested Blocks

metadata

Arguments

Attributes

Import

Priority Class can be imported using its name, e.g.

$ terraform import kubernetes_priority_class.example terraform-example