getRoleTemplate
Use this data source to retrieve information about a Rancher v2 role template resource.
Example Usage
using Pulumi;
using Rancher2 = Pulumi.Rancher2;
class MyStack : Stack
{
public MyStack()
{
var foo = Output.Create(Rancher2.GetRoleTemplate.InvokeAsync(new Rancher2.GetRoleTemplateArgs
{
Name = "foo",
}));
}
}
package main
import (
"github.com/pulumi/pulumi-rancher2/sdk/v2/go/rancher2"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := rancher2.GetRoleTemplate(ctx, &rancher2.GetRoleTemplateArgs{
Name: "foo",
}, nil)
if err != nil {
return err
}
return nil
})
}
import pulumi
import pulumi_rancher2 as rancher2
foo = rancher2.get_role_template(name="foo")
import * as pulumi from "@pulumi/pulumi";
import * as rancher2 from "@pulumi/rancher2";
const foo = pulumi.output(rancher2.getRoleTemplate({
name: "foo",
}, { async: true }));
Using getRoleTemplate
function getRoleTemplate(args: GetRoleTemplateArgs, opts?: InvokeOptions): Promise<GetRoleTemplateResult>
def get_role_template(context: Optional[str] = None, name: Optional[str] = None, opts: Optional[InvokeOptions] = None) -> GetRoleTemplateResult
func GetRoleTemplate(ctx *Context, args *GetRoleTemplateArgs, opts ...InvokeOption) (*GetRoleTemplateResult, error)
Note: This function is named
GetRoleTemplate
in the Go SDK.
public static class GetRoleTemplate {
public static Task<GetRoleTemplateResult> InvokeAsync(GetRoleTemplateArgs args, InvokeOptions? opts = null)
}
The following arguments are supported:
getRoleTemplate Result
The following output properties are available:
- Administrative bool
(Computed) Administrative role template (bool)
- Annotations Dictionary<string, object>
(Computed) Annotations for role template object (map)
- Builtin bool
(Computed) Builtin role template (string)
- Context string
- Default
Role bool (Computed) Default role template for new created cluster or project (bool)
- Description string
(Computed) Role template description (string)
- External bool
(Computed) External role template (bool)
- bool
(Computed) Hidden role template (bool)
- Id string
The provider-assigned unique ID for this managed resource.
- Labels Dictionary<string, object>
(Computed) Labels for role template object (map)
- Locked bool
(Computed) Locked role template (bool)
- Name string
- Role
Template List<string>Ids (Computed) Inherit role template IDs (list)
- Rules
List<Get
Role Template Rule> (Computed) Role template policy rules (list)
- Administrative bool
(Computed) Administrative role template (bool)
- Annotations map[string]interface{}
(Computed) Annotations for role template object (map)
- Builtin bool
(Computed) Builtin role template (string)
- Context string
- Default
Role bool (Computed) Default role template for new created cluster or project (bool)
- Description string
(Computed) Role template description (string)
- External bool
(Computed) External role template (bool)
- bool
(Computed) Hidden role template (bool)
- Id string
The provider-assigned unique ID for this managed resource.
- Labels map[string]interface{}
(Computed) Labels for role template object (map)
- Locked bool
(Computed) Locked role template (bool)
- Name string
- Role
Template []stringIds (Computed) Inherit role template IDs (list)
- Rules
[]Get
Role Template Rule (Computed) Role template policy rules (list)
- administrative boolean
(Computed) Administrative role template (bool)
- annotations {[key: string]: any}
(Computed) Annotations for role template object (map)
- builtin boolean
(Computed) Builtin role template (string)
- context string
- default
Role boolean (Computed) Default role template for new created cluster or project (bool)
- description string
(Computed) Role template description (string)
- external boolean
(Computed) External role template (bool)
- boolean
(Computed) Hidden role template (bool)
- id string
The provider-assigned unique ID for this managed resource.
- labels {[key: string]: any}
(Computed) Labels for role template object (map)
- locked boolean
(Computed) Locked role template (bool)
- name string
- role
Template string[]Ids (Computed) Inherit role template IDs (list)
- rules
Get
Role Template Rule[] (Computed) Role template policy rules (list)
- administrative bool
(Computed) Administrative role template (bool)
- annotations Mapping[str, Any]
(Computed) Annotations for role template object (map)
- builtin bool
(Computed) Builtin role template (string)
- context str
- default_
role bool (Computed) Default role template for new created cluster or project (bool)
- description str
(Computed) Role template description (string)
- external bool
(Computed) External role template (bool)
- bool
(Computed) Hidden role template (bool)
- id str
The provider-assigned unique ID for this managed resource.
- labels Mapping[str, Any]
(Computed) Labels for role template object (map)
- locked bool
(Computed) Locked role template (bool)
- name str
- role_
template_ Sequence[str]ids (Computed) Inherit role template IDs (list)
- rules
Sequence[Get
Role Template Rule] (Computed) Role template policy rules (list)
Supporting Types
GetRoleTemplateRule
- Api
Groups List<string> - Non
Resource List<string>Urls - Resource
Names List<string> - Resources List<string>
- Verbs List<string>
- Api
Groups []string - Non
Resource []stringUrls - Resource
Names []string - Resources []string
- Verbs []string
- api
Groups string[] - non
Resource string[]Urls - resource
Names string[] - resources string[]
- verbs string[]
- api_
groups Sequence[str] - non_
resource_ Sequence[str]urls - resource_
names Sequence[str] - resources Sequence[str]
- verbs Sequence[str]
Package Details
- Repository
- https://github.com/pulumi/pulumi-rancher2
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
rancher2
Terraform Provider.