GetGlobalRoleBinding
Use this data source to retrieve information about a Rancher v2 global role binding.
Example Usage
using Pulumi;
using Rancher2 = Pulumi.Rancher2;
class MyStack : Stack
{
public MyStack()
{
var foo = Output.Create(Rancher2.GetGlobalRoleBinding.InvokeAsync(new Rancher2.GetGlobalRoleBindingArgs
{
GlobalRoleId = "foo_id",
Name = "foo",
}));
}
}
Coming soon!
import pulumi
import pulumi_rancher2 as rancher2
foo = rancher2.get_global_role_binding(global_role_id="foo_id",
name="foo")import * as pulumi from "@pulumi/pulumi";
import * as rancher2 from "@pulumi/rancher2";
const foo = pulumi.output(rancher2.getGlobalRoleBinding({
globalRoleId: "foo_id",
name: "foo",
}, { async: true }));Using GetGlobalRoleBinding
function getGlobalRoleBinding(args: GetGlobalRoleBindingArgs, opts?: InvokeOptions): Promise<GetGlobalRoleBindingResult>function get_global_role_binding(global_role_id=None, name=None, opts=None)func LookupGlobalRoleBinding(ctx *Context, args *LookupGlobalRoleBindingArgs, opts ...InvokeOption) (*LookupGlobalRoleBindingResult, error)Note: This function is named
LookupGlobalRoleBindingin the Go SDK.
public static class GetGlobalRoleBinding {
public static Task<GetGlobalRoleBindingResult> InvokeAsync(GetGlobalRoleBindingArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
- Name string
The name of the global role binding (string)
- Global
Role stringId The global role id (string)
- Name string
The name of the global role binding (string)
- Global
Role stringId The global role id (string)
- name string
The name of the global role binding (string)
- global
Role stringId The global role id (string)
- name str
The name of the global role binding (string)
- global_
role_ strid The global role id (string)
GetGlobalRoleBinding Result
The following output properties are available:
- Annotations Dictionary<string, object>
(Computed) Annotations of the resource (map)
- Global
Role stringId - Group
Principal stringId (Computed) The group principal ID to assign global role binding. Rancher v2.4.0 or higher is required (string)
- Id string
The provider-assigned unique ID for this managed resource.
- Labels Dictionary<string, object>
(Computed) Labels of the resource (map)
- Name string
- User
Id string (Computed) The user ID to assign global role binding (string)
- Annotations map[string]interface{}
(Computed) Annotations of the resource (map)
- Global
Role stringId - Group
Principal stringId (Computed) The group principal ID to assign global role binding. Rancher v2.4.0 or higher is required (string)
- Id string
The provider-assigned unique ID for this managed resource.
- Labels map[string]interface{}
(Computed) Labels of the resource (map)
- Name string
- User
Id string (Computed) The user ID to assign global role binding (string)
- annotations {[key: string]: any}
(Computed) Annotations of the resource (map)
- global
Role stringId - group
Principal stringId (Computed) The group principal ID to assign global role binding. Rancher v2.4.0 or higher is required (string)
- id string
The provider-assigned unique ID for this managed resource.
- labels {[key: string]: any}
(Computed) Labels of the resource (map)
- name string
- user
Id string (Computed) The user ID to assign global role binding (string)
- annotations Dict[str, Any]
(Computed) Annotations of the resource (map)
- global_
role_ strid - group_
principal_ strid (Computed) The group principal ID to assign global role binding. Rancher v2.4.0 or higher is required (string)
- id str
The provider-assigned unique ID for this managed resource.
- labels Dict[str, Any]
(Computed) Labels of the resource (map)
- name str
- user_
id str (Computed) The user ID to assign global role binding (string)
Package Details
- Repository
- https://github.com/pulumi/pulumi-rancher2
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
rancher2Terraform Provider.