getClusterRoleTemplateBinding
Use this data source to retrieve information about a Rancher v2 cluster role template binding.
Example Usage
using Pulumi;
using Rancher2 = Pulumi.Rancher2;
class MyStack : Stack
{
public MyStack()
{
var foo = Output.Create(Rancher2.GetClusterRoleTemplateBinding.InvokeAsync(new Rancher2.GetClusterRoleTemplateBindingArgs
{
ClusterId = "foo_id",
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.LookupClusterRoleTemplateBinding(ctx, &rancher2.LookupClusterRoleTemplateBindingArgs{
ClusterId: "foo_id",
Name: "foo",
}, nil)
if err != nil {
return err
}
return nil
})
}
import pulumi
import pulumi_rancher2 as rancher2
foo = rancher2.get_cluster_role_template_binding(cluster_id="foo_id",
name="foo")
import * as pulumi from "@pulumi/pulumi";
import * as rancher2 from "@pulumi/rancher2";
const foo = pulumi.output(rancher2.getClusterRoleTemplateBinding({
clusterId: "foo_id",
name: "foo",
}, { async: true }));
Using getClusterRoleTemplateBinding
function getClusterRoleTemplateBinding(args: GetClusterRoleTemplateBindingArgs, opts?: InvokeOptions): Promise<GetClusterRoleTemplateBindingResult>
def get_cluster_role_template_binding(cluster_id: Optional[str] = None, name: Optional[str] = None, role_template_id: Optional[str] = None, opts: Optional[InvokeOptions] = None) -> GetClusterRoleTemplateBindingResult
func LookupClusterRoleTemplateBinding(ctx *Context, args *LookupClusterRoleTemplateBindingArgs, opts ...InvokeOption) (*LookupClusterRoleTemplateBindingResult, error)
Note: This function is named
LookupClusterRoleTemplateBinding
in the Go SDK.
public static class GetClusterRoleTemplateBinding {
public static Task<GetClusterRoleTemplateBindingResult> InvokeAsync(GetClusterRoleTemplateBindingArgs args, InvokeOptions? opts = null)
}
The following arguments are supported:
- Cluster
Id string The cluster id where bind cluster role template (string)
- Name string
The name of the cluster role template binding (string)
- Role
Template stringId The role template id from create cluster role template binding (string)
- Cluster
Id string The cluster id where bind cluster role template (string)
- Name string
The name of the cluster role template binding (string)
- Role
Template stringId The role template id from create cluster role template binding (string)
- cluster
Id string The cluster id where bind cluster role template (string)
- name string
The name of the cluster role template binding (string)
- role
Template stringId The role template id from create cluster role template binding (string)
- cluster_
id str The cluster id where bind cluster role template (string)
- name str
The name of the cluster role template binding (string)
- role_
template_ strid The role template id from create cluster role template binding (string)
getClusterRoleTemplateBinding Result
The following output properties are available:
- Annotations Dictionary<string, object>
(Computed) Annotations of the resource (map)
- Cluster
Id string - Group
Id string (Computed) The group ID to assign cluster role template binding (string)
- Group
Principal stringId (Computed) The group_principal ID to assign cluster role template binding (string)
- Id string
The provider-assigned unique ID for this managed resource.
- Labels Dictionary<string, object>
(Computed) Labels of the resource (map)
- Name string
- Role
Template stringId - User
Id string (Computed) The user ID to assign cluster role template binding (string)
- User
Principal stringId (Computed) The user_principal ID to assign cluster role template binding (string)
- Annotations map[string]interface{}
(Computed) Annotations of the resource (map)
- Cluster
Id string - Group
Id string (Computed) The group ID to assign cluster role template binding (string)
- Group
Principal stringId (Computed) The group_principal ID to assign cluster role template binding (string)
- Id string
The provider-assigned unique ID for this managed resource.
- Labels map[string]interface{}
(Computed) Labels of the resource (map)
- Name string
- Role
Template stringId - User
Id string (Computed) The user ID to assign cluster role template binding (string)
- User
Principal stringId (Computed) The user_principal ID to assign cluster role template binding (string)
- annotations {[key: string]: any}
(Computed) Annotations of the resource (map)
- cluster
Id string - group
Id string (Computed) The group ID to assign cluster role template binding (string)
- group
Principal stringId (Computed) The group_principal ID to assign cluster role template binding (string)
- id string
The provider-assigned unique ID for this managed resource.
- labels {[key: string]: any}
(Computed) Labels of the resource (map)
- name string
- role
Template stringId - user
Id string (Computed) The user ID to assign cluster role template binding (string)
- user
Principal stringId (Computed) The user_principal ID to assign cluster role template binding (string)
- annotations Mapping[str, Any]
(Computed) Annotations of the resource (map)
- cluster_
id str - group_
id str (Computed) The group ID to assign cluster role template binding (string)
- group_
principal_ strid (Computed) The group_principal ID to assign cluster role template binding (string)
- id str
The provider-assigned unique ID for this managed resource.
- labels Mapping[str, Any]
(Computed) Labels of the resource (map)
- name str
- role_
template_ strid - user_
id str (Computed) The user ID to assign cluster role template binding (string)
- user_
principal_ strid (Computed) The user_principal ID to assign cluster role template binding (string)
Package Details
- Repository
- https://github.com/pulumi/pulumi-rancher2
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
rancher2
Terraform Provider.