1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. beyondcorp
  5. AppConnector
Google Cloud v8.26.0 published on Thursday, Apr 10, 2025 by Pulumi

gcp.beyondcorp.AppConnector

Explore with Pulumi AI

A BeyondCorp AppConnector resource represents an application facing component deployed proximal to and with direct access to the application instances. It is used to establish connectivity between the remote enterprise environment and GCP. It initiates connections to the applications and can proxy the data from users over the connection.

To get more information about AppConnector, see:

Example Usage

Beyondcorp App Connector Basic

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";

const serviceAccount = new gcp.serviceaccount.Account("service_account", {
    accountId: "my-account",
    displayName: "Test Service Account",
});
const appConnector = new gcp.beyondcorp.AppConnector("app_connector", {
    name: "my-app-connector",
    principalInfo: {
        serviceAccount: {
            email: serviceAccount.email,
        },
    },
});
Copy
import pulumi
import pulumi_gcp as gcp

service_account = gcp.serviceaccount.Account("service_account",
    account_id="my-account",
    display_name="Test Service Account")
app_connector = gcp.beyondcorp.AppConnector("app_connector",
    name="my-app-connector",
    principal_info={
        "service_account": {
            "email": service_account.email,
        },
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/beyondcorp"
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/serviceaccount"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		serviceAccount, err := serviceaccount.NewAccount(ctx, "service_account", &serviceaccount.AccountArgs{
			AccountId:   pulumi.String("my-account"),
			DisplayName: pulumi.String("Test Service Account"),
		})
		if err != nil {
			return err
		}
		_, err = beyondcorp.NewAppConnector(ctx, "app_connector", &beyondcorp.AppConnectorArgs{
			Name: pulumi.String("my-app-connector"),
			PrincipalInfo: &beyondcorp.AppConnectorPrincipalInfoArgs{
				ServiceAccount: &beyondcorp.AppConnectorPrincipalInfoServiceAccountArgs{
					Email: serviceAccount.Email,
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var serviceAccount = new Gcp.ServiceAccount.Account("service_account", new()
    {
        AccountId = "my-account",
        DisplayName = "Test Service Account",
    });

    var appConnector = new Gcp.Beyondcorp.AppConnector("app_connector", new()
    {
        Name = "my-app-connector",
        PrincipalInfo = new Gcp.Beyondcorp.Inputs.AppConnectorPrincipalInfoArgs
        {
            ServiceAccount = new Gcp.Beyondcorp.Inputs.AppConnectorPrincipalInfoServiceAccountArgs
            {
                Email = serviceAccount.Email,
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.serviceaccount.Account;
import com.pulumi.gcp.serviceaccount.AccountArgs;
import com.pulumi.gcp.beyondcorp.AppConnector;
import com.pulumi.gcp.beyondcorp.AppConnectorArgs;
import com.pulumi.gcp.beyondcorp.inputs.AppConnectorPrincipalInfoArgs;
import com.pulumi.gcp.beyondcorp.inputs.AppConnectorPrincipalInfoServiceAccountArgs;
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 serviceAccount = new Account("serviceAccount", AccountArgs.builder()
            .accountId("my-account")
            .displayName("Test Service Account")
            .build());

        var appConnector = new AppConnector("appConnector", AppConnectorArgs.builder()
            .name("my-app-connector")
            .principalInfo(AppConnectorPrincipalInfoArgs.builder()
                .serviceAccount(AppConnectorPrincipalInfoServiceAccountArgs.builder()
                    .email(serviceAccount.email())
                    .build())
                .build())
            .build());

    }
}
Copy
resources:
  serviceAccount:
    type: gcp:serviceaccount:Account
    name: service_account
    properties:
      accountId: my-account
      displayName: Test Service Account
  appConnector:
    type: gcp:beyondcorp:AppConnector
    name: app_connector
    properties:
      name: my-app-connector
      principalInfo:
        serviceAccount:
          email: ${serviceAccount.email}
Copy

Beyondcorp App Connector Full

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";

const serviceAccount = new gcp.serviceaccount.Account("service_account", {
    accountId: "my-account",
    displayName: "Test Service Account",
});
const appConnector = new gcp.beyondcorp.AppConnector("app_connector", {
    name: "my-app-connector",
    region: "us-central1",
    displayName: "some display name",
    principalInfo: {
        serviceAccount: {
            email: serviceAccount.email,
        },
    },
    labels: {
        foo: "bar",
        bar: "baz",
    },
});
Copy
import pulumi
import pulumi_gcp as gcp

service_account = gcp.serviceaccount.Account("service_account",
    account_id="my-account",
    display_name="Test Service Account")
app_connector = gcp.beyondcorp.AppConnector("app_connector",
    name="my-app-connector",
    region="us-central1",
    display_name="some display name",
    principal_info={
        "service_account": {
            "email": service_account.email,
        },
    },
    labels={
        "foo": "bar",
        "bar": "baz",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/beyondcorp"
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/serviceaccount"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		serviceAccount, err := serviceaccount.NewAccount(ctx, "service_account", &serviceaccount.AccountArgs{
			AccountId:   pulumi.String("my-account"),
			DisplayName: pulumi.String("Test Service Account"),
		})
		if err != nil {
			return err
		}
		_, err = beyondcorp.NewAppConnector(ctx, "app_connector", &beyondcorp.AppConnectorArgs{
			Name:        pulumi.String("my-app-connector"),
			Region:      pulumi.String("us-central1"),
			DisplayName: pulumi.String("some display name"),
			PrincipalInfo: &beyondcorp.AppConnectorPrincipalInfoArgs{
				ServiceAccount: &beyondcorp.AppConnectorPrincipalInfoServiceAccountArgs{
					Email: serviceAccount.Email,
				},
			},
			Labels: pulumi.StringMap{
				"foo": pulumi.String("bar"),
				"bar": pulumi.String("baz"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var serviceAccount = new Gcp.ServiceAccount.Account("service_account", new()
    {
        AccountId = "my-account",
        DisplayName = "Test Service Account",
    });

    var appConnector = new Gcp.Beyondcorp.AppConnector("app_connector", new()
    {
        Name = "my-app-connector",
        Region = "us-central1",
        DisplayName = "some display name",
        PrincipalInfo = new Gcp.Beyondcorp.Inputs.AppConnectorPrincipalInfoArgs
        {
            ServiceAccount = new Gcp.Beyondcorp.Inputs.AppConnectorPrincipalInfoServiceAccountArgs
            {
                Email = serviceAccount.Email,
            },
        },
        Labels = 
        {
            { "foo", "bar" },
            { "bar", "baz" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.serviceaccount.Account;
import com.pulumi.gcp.serviceaccount.AccountArgs;
import com.pulumi.gcp.beyondcorp.AppConnector;
import com.pulumi.gcp.beyondcorp.AppConnectorArgs;
import com.pulumi.gcp.beyondcorp.inputs.AppConnectorPrincipalInfoArgs;
import com.pulumi.gcp.beyondcorp.inputs.AppConnectorPrincipalInfoServiceAccountArgs;
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 serviceAccount = new Account("serviceAccount", AccountArgs.builder()
            .accountId("my-account")
            .displayName("Test Service Account")
            .build());

        var appConnector = new AppConnector("appConnector", AppConnectorArgs.builder()
            .name("my-app-connector")
            .region("us-central1")
            .displayName("some display name")
            .principalInfo(AppConnectorPrincipalInfoArgs.builder()
                .serviceAccount(AppConnectorPrincipalInfoServiceAccountArgs.builder()
                    .email(serviceAccount.email())
                    .build())
                .build())
            .labels(Map.ofEntries(
                Map.entry("foo", "bar"),
                Map.entry("bar", "baz")
            ))
            .build());

    }
}
Copy
resources:
  serviceAccount:
    type: gcp:serviceaccount:Account
    name: service_account
    properties:
      accountId: my-account
      displayName: Test Service Account
  appConnector:
    type: gcp:beyondcorp:AppConnector
    name: app_connector
    properties:
      name: my-app-connector
      region: us-central1
      displayName: some display name
      principalInfo:
        serviceAccount:
          email: ${serviceAccount.email}
      labels:
        foo: bar
        bar: baz
Copy

Create AppConnector Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new AppConnector(name: string, args: AppConnectorArgs, opts?: CustomResourceOptions);
@overload
def AppConnector(resource_name: str,
                 args: AppConnectorArgs,
                 opts: Optional[ResourceOptions] = None)

@overload
def AppConnector(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 principal_info: Optional[AppConnectorPrincipalInfoArgs] = None,
                 display_name: Optional[str] = None,
                 labels: Optional[Mapping[str, str]] = None,
                 name: Optional[str] = None,
                 project: Optional[str] = None,
                 region: Optional[str] = None)
func NewAppConnector(ctx *Context, name string, args AppConnectorArgs, opts ...ResourceOption) (*AppConnector, error)
public AppConnector(string name, AppConnectorArgs args, CustomResourceOptions? opts = null)
public AppConnector(String name, AppConnectorArgs args)
public AppConnector(String name, AppConnectorArgs args, CustomResourceOptions options)
type: gcp:beyondcorp:AppConnector
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AppConnectorArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AppConnectorArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AppConnectorArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AppConnectorArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AppConnectorArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var appConnectorResource = new Gcp.Beyondcorp.AppConnector("appConnectorResource", new()
{
    PrincipalInfo = new Gcp.Beyondcorp.Inputs.AppConnectorPrincipalInfoArgs
    {
        ServiceAccount = new Gcp.Beyondcorp.Inputs.AppConnectorPrincipalInfoServiceAccountArgs
        {
            Email = "string",
        },
    },
    DisplayName = "string",
    Labels = 
    {
        { "string", "string" },
    },
    Name = "string",
    Project = "string",
    Region = "string",
});
Copy
example, err := beyondcorp.NewAppConnector(ctx, "appConnectorResource", &beyondcorp.AppConnectorArgs{
	PrincipalInfo: &beyondcorp.AppConnectorPrincipalInfoArgs{
		ServiceAccount: &beyondcorp.AppConnectorPrincipalInfoServiceAccountArgs{
			Email: pulumi.String("string"),
		},
	},
	DisplayName: pulumi.String("string"),
	Labels: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Name:    pulumi.String("string"),
	Project: pulumi.String("string"),
	Region:  pulumi.String("string"),
})
Copy
var appConnectorResource = new AppConnector("appConnectorResource", AppConnectorArgs.builder()
    .principalInfo(AppConnectorPrincipalInfoArgs.builder()
        .serviceAccount(AppConnectorPrincipalInfoServiceAccountArgs.builder()
            .email("string")
            .build())
        .build())
    .displayName("string")
    .labels(Map.of("string", "string"))
    .name("string")
    .project("string")
    .region("string")
    .build());
Copy
app_connector_resource = gcp.beyondcorp.AppConnector("appConnectorResource",
    principal_info={
        "service_account": {
            "email": "string",
        },
    },
    display_name="string",
    labels={
        "string": "string",
    },
    name="string",
    project="string",
    region="string")
Copy
const appConnectorResource = new gcp.beyondcorp.AppConnector("appConnectorResource", {
    principalInfo: {
        serviceAccount: {
            email: "string",
        },
    },
    displayName: "string",
    labels: {
        string: "string",
    },
    name: "string",
    project: "string",
    region: "string",
});
Copy
type: gcp:beyondcorp:AppConnector
properties:
    displayName: string
    labels:
        string: string
    name: string
    principalInfo:
        serviceAccount:
            email: string
    project: string
    region: string
Copy

AppConnector Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The AppConnector resource accepts the following input properties:

PrincipalInfo This property is required. AppConnectorPrincipalInfo
Principal information about the Identity of the AppConnector. Structure is documented below.
DisplayName string
An arbitrary user-provided name for the AppConnector.
Labels Dictionary<string, string>
Resource labels to represent user provided metadata. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
Name Changes to this property will trigger replacement. string
ID of the AppConnector.
Project Changes to this property will trigger replacement. string
Region Changes to this property will trigger replacement. string
The region of the AppConnector.
PrincipalInfo This property is required. AppConnectorPrincipalInfoArgs
Principal information about the Identity of the AppConnector. Structure is documented below.
DisplayName string
An arbitrary user-provided name for the AppConnector.
Labels map[string]string
Resource labels to represent user provided metadata. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
Name Changes to this property will trigger replacement. string
ID of the AppConnector.
Project Changes to this property will trigger replacement. string
Region Changes to this property will trigger replacement. string
The region of the AppConnector.
principalInfo This property is required. AppConnectorPrincipalInfo
Principal information about the Identity of the AppConnector. Structure is documented below.
displayName String
An arbitrary user-provided name for the AppConnector.
labels Map<String,String>
Resource labels to represent user provided metadata. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
name Changes to this property will trigger replacement. String
ID of the AppConnector.
project Changes to this property will trigger replacement. String
region Changes to this property will trigger replacement. String
The region of the AppConnector.
principalInfo This property is required. AppConnectorPrincipalInfo
Principal information about the Identity of the AppConnector. Structure is documented below.
displayName string
An arbitrary user-provided name for the AppConnector.
labels {[key: string]: string}
Resource labels to represent user provided metadata. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
name Changes to this property will trigger replacement. string
ID of the AppConnector.
project Changes to this property will trigger replacement. string
region Changes to this property will trigger replacement. string
The region of the AppConnector.
principal_info This property is required. AppConnectorPrincipalInfoArgs
Principal information about the Identity of the AppConnector. Structure is documented below.
display_name str
An arbitrary user-provided name for the AppConnector.
labels Mapping[str, str]
Resource labels to represent user provided metadata. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
name Changes to this property will trigger replacement. str
ID of the AppConnector.
project Changes to this property will trigger replacement. str
region Changes to this property will trigger replacement. str
The region of the AppConnector.
principalInfo This property is required. Property Map
Principal information about the Identity of the AppConnector. Structure is documented below.
displayName String
An arbitrary user-provided name for the AppConnector.
labels Map<String>
Resource labels to represent user provided metadata. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
name Changes to this property will trigger replacement. String
ID of the AppConnector.
project Changes to this property will trigger replacement. String
region Changes to this property will trigger replacement. String
The region of the AppConnector.

Outputs

All input properties are implicitly available as output properties. Additionally, the AppConnector resource produces the following output properties:

EffectiveLabels Dictionary<string, string>
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
Id string
The provider-assigned unique ID for this managed resource.
PulumiLabels Dictionary<string, string>
The combination of labels configured directly on the resource and default labels configured on the provider.
State string
Represents the different states of a AppConnector.
EffectiveLabels map[string]string
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
Id string
The provider-assigned unique ID for this managed resource.
PulumiLabels map[string]string
The combination of labels configured directly on the resource and default labels configured on the provider.
State string
Represents the different states of a AppConnector.
effectiveLabels Map<String,String>
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
id String
The provider-assigned unique ID for this managed resource.
pulumiLabels Map<String,String>
The combination of labels configured directly on the resource and default labels configured on the provider.
state String
Represents the different states of a AppConnector.
effectiveLabels {[key: string]: string}
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
id string
The provider-assigned unique ID for this managed resource.
pulumiLabels {[key: string]: string}
The combination of labels configured directly on the resource and default labels configured on the provider.
state string
Represents the different states of a AppConnector.
effective_labels Mapping[str, str]
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
id str
The provider-assigned unique ID for this managed resource.
pulumi_labels Mapping[str, str]
The combination of labels configured directly on the resource and default labels configured on the provider.
state str
Represents the different states of a AppConnector.
effectiveLabels Map<String>
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
id String
The provider-assigned unique ID for this managed resource.
pulumiLabels Map<String>
The combination of labels configured directly on the resource and default labels configured on the provider.
state String
Represents the different states of a AppConnector.

Look up Existing AppConnector Resource

Get an existing AppConnector resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: AppConnectorState, opts?: CustomResourceOptions): AppConnector
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        display_name: Optional[str] = None,
        effective_labels: Optional[Mapping[str, str]] = None,
        labels: Optional[Mapping[str, str]] = None,
        name: Optional[str] = None,
        principal_info: Optional[AppConnectorPrincipalInfoArgs] = None,
        project: Optional[str] = None,
        pulumi_labels: Optional[Mapping[str, str]] = None,
        region: Optional[str] = None,
        state: Optional[str] = None) -> AppConnector
func GetAppConnector(ctx *Context, name string, id IDInput, state *AppConnectorState, opts ...ResourceOption) (*AppConnector, error)
public static AppConnector Get(string name, Input<string> id, AppConnectorState? state, CustomResourceOptions? opts = null)
public static AppConnector get(String name, Output<String> id, AppConnectorState state, CustomResourceOptions options)
resources:  _:    type: gcp:beyondcorp:AppConnector    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
DisplayName string
An arbitrary user-provided name for the AppConnector.
EffectiveLabels Dictionary<string, string>
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
Labels Dictionary<string, string>
Resource labels to represent user provided metadata. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
Name Changes to this property will trigger replacement. string
ID of the AppConnector.
PrincipalInfo AppConnectorPrincipalInfo
Principal information about the Identity of the AppConnector. Structure is documented below.
Project Changes to this property will trigger replacement. string
PulumiLabels Dictionary<string, string>
The combination of labels configured directly on the resource and default labels configured on the provider.
Region Changes to this property will trigger replacement. string
The region of the AppConnector.
State string
Represents the different states of a AppConnector.
DisplayName string
An arbitrary user-provided name for the AppConnector.
EffectiveLabels map[string]string
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
Labels map[string]string
Resource labels to represent user provided metadata. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
Name Changes to this property will trigger replacement. string
ID of the AppConnector.
PrincipalInfo AppConnectorPrincipalInfoArgs
Principal information about the Identity of the AppConnector. Structure is documented below.
Project Changes to this property will trigger replacement. string
PulumiLabels map[string]string
The combination of labels configured directly on the resource and default labels configured on the provider.
Region Changes to this property will trigger replacement. string
The region of the AppConnector.
State string
Represents the different states of a AppConnector.
displayName String
An arbitrary user-provided name for the AppConnector.
effectiveLabels Map<String,String>
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
labels Map<String,String>
Resource labels to represent user provided metadata. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
name Changes to this property will trigger replacement. String
ID of the AppConnector.
principalInfo AppConnectorPrincipalInfo
Principal information about the Identity of the AppConnector. Structure is documented below.
project Changes to this property will trigger replacement. String
pulumiLabels Map<String,String>
The combination of labels configured directly on the resource and default labels configured on the provider.
region Changes to this property will trigger replacement. String
The region of the AppConnector.
state String
Represents the different states of a AppConnector.
displayName string
An arbitrary user-provided name for the AppConnector.
effectiveLabels {[key: string]: string}
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
labels {[key: string]: string}
Resource labels to represent user provided metadata. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
name Changes to this property will trigger replacement. string
ID of the AppConnector.
principalInfo AppConnectorPrincipalInfo
Principal information about the Identity of the AppConnector. Structure is documented below.
project Changes to this property will trigger replacement. string
pulumiLabels {[key: string]: string}
The combination of labels configured directly on the resource and default labels configured on the provider.
region Changes to this property will trigger replacement. string
The region of the AppConnector.
state string
Represents the different states of a AppConnector.
display_name str
An arbitrary user-provided name for the AppConnector.
effective_labels Mapping[str, str]
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
labels Mapping[str, str]
Resource labels to represent user provided metadata. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
name Changes to this property will trigger replacement. str
ID of the AppConnector.
principal_info AppConnectorPrincipalInfoArgs
Principal information about the Identity of the AppConnector. Structure is documented below.
project Changes to this property will trigger replacement. str
pulumi_labels Mapping[str, str]
The combination of labels configured directly on the resource and default labels configured on the provider.
region Changes to this property will trigger replacement. str
The region of the AppConnector.
state str
Represents the different states of a AppConnector.
displayName String
An arbitrary user-provided name for the AppConnector.
effectiveLabels Map<String>
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
labels Map<String>
Resource labels to represent user provided metadata. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels present on the resource.
name Changes to this property will trigger replacement. String
ID of the AppConnector.
principalInfo Property Map
Principal information about the Identity of the AppConnector. Structure is documented below.
project Changes to this property will trigger replacement. String
pulumiLabels Map<String>
The combination of labels configured directly on the resource and default labels configured on the provider.
region Changes to this property will trigger replacement. String
The region of the AppConnector.
state String
Represents the different states of a AppConnector.

Supporting Types

AppConnectorPrincipalInfo
, AppConnectorPrincipalInfoArgs

ServiceAccount This property is required. AppConnectorPrincipalInfoServiceAccount
ServiceAccount represents a GCP service account. Structure is documented below.
ServiceAccount This property is required. AppConnectorPrincipalInfoServiceAccount
ServiceAccount represents a GCP service account. Structure is documented below.
serviceAccount This property is required. AppConnectorPrincipalInfoServiceAccount
ServiceAccount represents a GCP service account. Structure is documented below.
serviceAccount This property is required. AppConnectorPrincipalInfoServiceAccount
ServiceAccount represents a GCP service account. Structure is documented below.
service_account This property is required. AppConnectorPrincipalInfoServiceAccount
ServiceAccount represents a GCP service account. Structure is documented below.
serviceAccount This property is required. Property Map
ServiceAccount represents a GCP service account. Structure is documented below.

AppConnectorPrincipalInfoServiceAccount
, AppConnectorPrincipalInfoServiceAccountArgs

Email This property is required. string
Email address of the service account.


Email This property is required. string
Email address of the service account.


email This property is required. String
Email address of the service account.


email This property is required. string
Email address of the service account.


email This property is required. str
Email address of the service account.


email This property is required. String
Email address of the service account.


Import

AppConnector can be imported using any of these accepted formats:

  • projects/{{project}}/locations/{{region}}/appConnectors/{{name}}

  • {{project}}/{{region}}/{{name}}

  • {{region}}/{{name}}

  • {{name}}

When using the pulumi import command, AppConnector can be imported using one of the formats above. For example:

$ pulumi import gcp:beyondcorp/appConnector:AppConnector default projects/{{project}}/locations/{{region}}/appConnectors/{{name}}
Copy
$ pulumi import gcp:beyondcorp/appConnector:AppConnector default {{project}}/{{region}}/{{name}}
Copy
$ pulumi import gcp:beyondcorp/appConnector:AppConnector default {{region}}/{{name}}
Copy
$ pulumi import gcp:beyondcorp/appConnector:AppConnector default {{name}}
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Google Cloud (GCP) Classic pulumi/pulumi-gcp
License
Apache-2.0
Notes
This Pulumi package is based on the google-beta Terraform Provider.