Client Args
data class ClientArgs(val brand: Output<String>? = null, val displayName: Output<String>? = null) : ConvertibleToJava<ClientArgs>
Contains the data that describes an Identity Aware Proxy owned client.
Note: Only internal org clients can be created via declarative tools. External clients must be manually created via the GCP console. This restriction is due to the existing APIs and not lack of support in this tool. To get more information about Client, see:
How-to Guides
Example Usage
Iap Client
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const project = new gcp.organizations.Project("project", {
projectId: "my-project",
name: "my-project",
orgId: "123456789",
deletionPolicy: "DELETE",
});
const projectService = new gcp.projects.Service("project_service", {
project: project.projectId,
service: "iap.googleapis.com",
});
const projectBrand = new gcp.iap.Brand("project_brand", {
supportEmail: "support@example.com",
applicationTitle: "Cloud IAP protected Application",
project: projectService.project,
});
const projectClient = new gcp.iap.Client("project_client", {
displayName: "Test Client",
brand: projectBrand.name,
});
Content copied to clipboard
import pulumi
import pulumi_gcp as gcp
project = gcp.organizations.Project("project",
project_id="my-project",
name="my-project",
org_id="123456789",
deletion_policy="DELETE")
project_service = gcp.projects.Service("project_service",
project=project.project_id,
service="iap.googleapis.com")
project_brand = gcp.iap.Brand("project_brand",
support_email="support@example.com",
application_title="Cloud IAP protected Application",
project=project_service.project)
project_client = gcp.iap.Client("project_client",
display_name="Test Client",
brand=project_brand.name)
Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var project = new Gcp.Organizations.Project("project", new()
{
ProjectId = "my-project",
Name = "my-project",
OrgId = "123456789",
DeletionPolicy = "DELETE",
});
var projectService = new Gcp.Projects.Service("project_service", new()
{
Project = project.ProjectId,
ServiceName = "iap.googleapis.com",
});
var projectBrand = new Gcp.Iap.Brand("project_brand", new()
{
SupportEmail = "support@example.com",
ApplicationTitle = "Cloud IAP protected Application",
Project = projectService.Project,
});
var projectClient = new Gcp.Iap.Client("project_client", new()
{
DisplayName = "Test Client",
Brand = projectBrand.Name,
});
});
Content copied to clipboard
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/iap"
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/organizations"
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/projects"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
project, err := organizations.NewProject(ctx, "project", &organizations.ProjectArgs{
ProjectId: pulumi.String("my-project"),
Name: pulumi.String("my-project"),
OrgId: pulumi.String("123456789"),
DeletionPolicy: pulumi.String("DELETE"),
})
if err != nil {
return err
}
projectService, err := projects.NewService(ctx, "project_service", &projects.ServiceArgs{
Project: project.ProjectId,
Service: pulumi.String("iap.googleapis.com"),
})
if err != nil {
return err
}
projectBrand, err := iap.NewBrand(ctx, "project_brand", &iap.BrandArgs{
SupportEmail: pulumi.String("support@example.com"),
ApplicationTitle: pulumi.String("Cloud IAP protected Application"),
Project: projectService.Project,
})
if err != nil {
return err
}
_, err = iap.NewClient(ctx, "project_client", &iap.ClientArgs{
DisplayName: pulumi.String("Test Client"),
Brand: projectBrand.Name,
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.organizations.Project;
import com.pulumi.gcp.organizations.ProjectArgs;
import com.pulumi.gcp.projects.Service;
import com.pulumi.gcp.projects.ServiceArgs;
import com.pulumi.gcp.iap.Brand;
import com.pulumi.gcp.iap.BrandArgs;
import com.pulumi.gcp.iap.Client;
import com.pulumi.gcp.iap.ClientArgs;
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 project = new Project("project", ProjectArgs.builder()
.projectId("my-project")
.name("my-project")
.orgId("123456789")
.deletionPolicy("DELETE")
.build());
var projectService = new Service("projectService", ServiceArgs.builder()
.project(project.projectId())
.service("iap.googleapis.com")
.build());
var projectBrand = new Brand("projectBrand", BrandArgs.builder()
.supportEmail("support@example.com")
.applicationTitle("Cloud IAP protected Application")
.project(projectService.project())
.build());
var projectClient = new Client("projectClient", ClientArgs.builder()
.displayName("Test Client")
.brand(projectBrand.name())
.build());
}
}
Content copied to clipboard
resources:
project:
type: gcp:organizations:Project
properties:
projectId: my-project
name: my-project
orgId: '123456789'
deletionPolicy: DELETE
projectService:
type: gcp:projects:Service
name: project_service
properties:
project: ${project.projectId}
service: iap.googleapis.com
projectBrand:
type: gcp:iap:Brand
name: project_brand
properties:
supportEmail: support@example.com
applicationTitle: Cloud IAP protected Application
project: ${projectService.project}
projectClient:
type: gcp:iap:Client
name: project_client
properties:
displayName: Test Client
brand: ${projectBrand.name}
Content copied to clipboard
Import
Client can be imported using any of these accepted formats:
{{brand}}/identityAwareProxyClients/{{client_id}}
{{brand}}/{{client_id}}
When using thepulumi import
command, Client can be imported using one of the formats above. For example:
$ pulumi import gcp:iap/client:Client default {{brand}}/identityAwareProxyClients/{{client_id}}
Content copied to clipboard
$ pulumi import gcp:iap/client:Client default {{brand}}/{{client_id}}
Content copied to clipboard