getServiceIamPolicy

Retrieves the current IAM policy data for service

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const policy = gcp.cloudrun.getServiceIamPolicy({
location: _default.location,
project: _default.project,
service: _default.name,
});
import pulumi
import pulumi_gcp as gcp
policy = gcp.cloudrun.get_service_iam_policy(location=default["location"],
project=default["project"],
service=default["name"])
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var policy = Gcp.CloudRun.GetServiceIamPolicy.Invoke(new()
{
Location = @default.Location,
Project = @default.Project,
Service = @default.Name,
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/cloudrun"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudrun.GetServiceIamPolicy(ctx, &cloudrun.GetServiceIamPolicyArgs{
Location: pulumi.StringRef(_default.Location),
Project: pulumi.StringRef(_default.Project),
Service: _default.Name,
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.cloudrun.CloudrunFunctions;
import com.pulumi.gcp.cloudrun.inputs.GetServiceIamPolicyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var policy = CloudrunFunctions.getServiceIamPolicy(GetServiceIamPolicyArgs.builder()
.location(default_.location())
.project(default_.project())
.service(default_.name())
.build());
}
}
variables:
policy:
fn::invoke:
function: gcp:cloudrun:getServiceIamPolicy
arguments:
location: ${default.location}
project: ${default.project}
service: ${default.name}

Return

A collection of values returned by getServiceIamPolicy.

Parameters

argument

A collection of arguments for invoking getServiceIamPolicy.


suspend fun getServiceIamPolicy(location: String? = null, project: String? = null, service: String): GetServiceIamPolicyResult

Return

A collection of values returned by getServiceIamPolicy.

Parameters

location

The location of the cloud run instance. eg us-central1 Used to find the parent resource to bind the IAM policy to. If not specified, the value will be parsed from the identifier of the parent resource. If no location is provided in the parent identifier and no location is specified, it is taken from the provider configuration.

project

The ID of the project in which the resource belongs. If it is not provided, the project will be parsed from the identifier of the parent resource. If no project is provided in the parent identifier and no project is specified, the provider project is used.

service

Used to find the parent resource to bind the IAM policy to

See also


Return

A collection of values returned by getServiceIamPolicy.

Parameters

argument

Builder for com.pulumi.gcp.cloudrun.kotlin.inputs.GetServiceIamPolicyPlainArgs.

See also