Skip to content

How to set multiple rules in the Rancher2 Terraform Provider Role Template resource

This document (000020672) is provided subject to the disclaimer at the end of this document.

Situation

Defining multiple rules within a single role template.

Resolution

To define multiple rules for a single role template, set multiple rule blocks as per the following example:

resource "rancher2_role_template" "foo" {
  name = "foo"
  context = "project"
  default_role = false
  description = "Terraform role template acceptance test"
  rules {
    api_groups = ["*"]
    resources = ["secrets"]
    verbs = ["create"]
  }
  rules {
    api_groups = ["*"]
    resources = ["namespaces"]
    verbs = ["create"]
  }
}

Disclaimer

This Support Knowledgebase provides a valuable tool for SUSE customers and parties interested in our products and solutions to acquire information, ideas and learn from one another. Materials are provided for informational, personal or non-commercial use within your organization and are presented "AS IS" WITHOUT WARRANTY OF ANY KIND.