GetRole

Use this data source to get the ID of an OpenStack role.

Example Usage

using Pulumi;
using OpenStack = Pulumi.OpenStack;

class MyStack : Stack
{
    public MyStack()
    {
        var admin = Output.Create(OpenStack.Identity.GetRole.InvokeAsync(new OpenStack.Identity.GetRoleArgs
        {
            Name = "admin",
        }));
    }

}

Coming soon!

import pulumi
import pulumi_openstack as openstack

admin = openstack.identity.get_role(name="admin")
import * as pulumi from "@pulumi/pulumi";
import * as openstack from "@pulumi/openstack";

const admin = pulumi.output(openstack.identity.getRole({
    name: "admin",
}, { async: true }));

Using GetRole

function getRole(args: GetRoleArgs, opts?: InvokeOptions): Promise<GetRoleResult>
function  get_role(domain_id=None, name=None, region=None, opts=None)
func LookupRole(ctx *Context, args *LookupRoleArgs, opts ...InvokeOption) (*LookupRoleResult, error)

Note: This function is named LookupRole in the Go SDK.

public static class GetRole {
    public static Task<GetRoleResult> InvokeAsync(GetRoleArgs args, InvokeOptions? opts = null)
}

The following arguments are supported:

Name string

The name of the role.

DomainId string

The domain the role belongs to.

Region string

The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.

Name string

The name of the role.

DomainId string

The domain the role belongs to.

Region string

The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.

name string

The name of the role.

domainId string

The domain the role belongs to.

region string

The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.

name str

The name of the role.

domain_id str

The domain the role belongs to.

region str

The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.

GetRole Result

The following output properties are available:

DomainId string

See Argument Reference above.

Id string

The provider-assigned unique ID for this managed resource.

Name string

See Argument Reference above.

Region string

See Argument Reference above.

DomainId string

See Argument Reference above.

Id string

The provider-assigned unique ID for this managed resource.

Name string

See Argument Reference above.

Region string

See Argument Reference above.

domainId string

See Argument Reference above.

id string

The provider-assigned unique ID for this managed resource.

name string

See Argument Reference above.

region string

See Argument Reference above.

domain_id str

See Argument Reference above.

id str

The provider-assigned unique ID for this managed resource.

name str

See Argument Reference above.

region str

See Argument Reference above.

Package Details

Repository
https://github.com/pulumi/pulumi-openstack
License
Apache-2.0
Notes
This Pulumi package is based on the openstack Terraform Provider.