Oauth Client
Represents an OAuth Client. Used to access Google Cloud resources on behalf of a Workforce Identity Federation user by using OAuth 2.0 Protocol to obtain an access token from Google Cloud. To get more information about OauthClient, see:
How-to Guides
Example Usage
Iam Oauth Client Full
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const example = new gcp.iam.OauthClient("example", {
oauthClientId: "example-client-id",
displayName: "Display Name of OAuth client",
description: "A sample OAuth client",
location: "global",
disabled: false,
allowedGrantTypes: ["AUTHORIZATION_CODE_GRANT"],
allowedRedirectUris: ["https://www.example.com"],
allowedScopes: ["https://www.googleapis.com/auth/cloud-platform"],
clientType: "CONFIDENTIAL_CLIENT",
});
import pulumi
import pulumi_gcp as gcp
example = gcp.iam.OauthClient("example",
oauth_client_id="example-client-id",
display_name="Display Name of OAuth client",
description="A sample OAuth client",
location="global",
disabled=False,
allowed_grant_types=["AUTHORIZATION_CODE_GRANT"],
allowed_redirect_uris=["https://www.example.com"],
allowed_scopes=["https://www.googleapis.com/auth/cloud-platform"],
client_type="CONFIDENTIAL_CLIENT")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var example = new Gcp.Iam.OauthClient("example", new()
{
OauthClientId = "example-client-id",
DisplayName = "Display Name of OAuth client",
Description = "A sample OAuth client",
Location = "global",
Disabled = false,
AllowedGrantTypes = new[]
{
"AUTHORIZATION_CODE_GRANT",
},
AllowedRedirectUris = new[]
{
"https://www.example.com",
},
AllowedScopes = new[]
{
"https://www.googleapis.com/auth/cloud-platform",
},
ClientType = "CONFIDENTIAL_CLIENT",
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/iam"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := iam.NewOauthClient(ctx, "example", &iam.OauthClientArgs{
OauthClientId: pulumi.String("example-client-id"),
DisplayName: pulumi.String("Display Name of OAuth client"),
Description: pulumi.String("A sample OAuth client"),
Location: pulumi.String("global"),
Disabled: pulumi.Bool(false),
AllowedGrantTypes: pulumi.StringArray{
pulumi.String("AUTHORIZATION_CODE_GRANT"),
},
AllowedRedirectUris: pulumi.StringArray{
pulumi.String("https://www.example.com"),
},
AllowedScopes: pulumi.StringArray{
pulumi.String("https://www.googleapis.com/auth/cloud-platform"),
},
ClientType: pulumi.String("CONFIDENTIAL_CLIENT"),
})
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.iam.OauthClient;
import com.pulumi.gcp.iam.OauthClientArgs;
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) {
var example = new OauthClient("example", OauthClientArgs.builder()
.oauthClientId("example-client-id")
.displayName("Display Name of OAuth client")
.description("A sample OAuth client")
.location("global")
.disabled(false)
.allowedGrantTypes("AUTHORIZATION_CODE_GRANT")
.allowedRedirectUris("https://www.example.com")
.allowedScopes("https://www.googleapis.com/auth/cloud-platform")
.clientType("CONFIDENTIAL_CLIENT")
.build());
}
}
resources:
example:
type: gcp:iam:OauthClient
properties:
oauthClientId: example-client-id
displayName: Display Name of OAuth client
description: A sample OAuth client
location: global
disabled: false
allowedGrantTypes:
- AUTHORIZATION_CODE_GRANT
allowedRedirectUris:
- https://www.example.com
allowedScopes:
- https://www.googleapis.com/auth/cloud-platform
clientType: CONFIDENTIAL_CLIENT
Import
OauthClient can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/oauthClients/{{oauth_client_id}}
{{project}}/{{location}}/{{oauth_client_id}}
{{location}}/{{oauth_client_id}}
When using thepulumi import
command, OauthClient can be imported using one of the formats above. For example:
$ pulumi import gcp:iam/oauthClient:OauthClient default projects/{{project}}/locations/{{location}}/oauthClients/{{oauth_client_id}}
$ pulumi import gcp:iam/oauthClient:OauthClient default {{project}}/{{location}}/{{oauth_client_id}}
$ pulumi import gcp:iam/oauthClient:OauthClient default {{location}}/{{oauth_client_id}}
Properties
Required. The list of OAuth grant types is allowed for the OauthClient.
Required. The list of redirect uris that is allowed to redirect back when authorization process is completed.
Required. The list of scopes that the OauthClient is allowed to request during OAuth flows. The following scopes are supported:
Immutable. The type of OauthClient. Either public or private. For private clients, the client secret can be managed using the dedicated OauthClientCredential resource. Possible values: CLIENT_TYPE_UNSPECIFIED PUBLIC_CLIENT CONFIDENTIAL_CLIENT
A user-specified description of the OauthClient. Cannot exceed 256 characters.
A user-specified display name of the OauthClient. Cannot exceed 32 characters.
Time after which the OauthClient will be permanently purged and cannot be recovered.
Required. The ID to use for the OauthClient, which becomes the final component of the resource name. This value should be a string of 6 to 63 lowercase letters, digits, or hyphens. It must start with a letter, and cannot have a trailing hyphen. The prefix gcp-
is reserved for use by Google, and may not be specified.