NetworkAttachmentArgs

data class NetworkAttachmentArgs(val connectionPreference: Output<String>? = null, val description: Output<String>? = null, val name: Output<String>? = null, val producerAcceptLists: Output<List<String>>? = null, val producerRejectLists: Output<List<String>>? = null, val project: Output<String>? = null, val region: Output<String>? = null, val subnetworks: Output<List<String>>? = null) : ConvertibleToJava<NetworkAttachmentArgs>

A network attachment is a resource that lets a producer Virtual Private Cloud (VPC) network initiate connections to a consumer VPC network through a Private Service Connect interface. To get more information about NetworkAttachment, see:

Example Usage

Network Attachment Basic

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const defaultNetwork = new gcp.compute.Network("default", {
name: "basic-network",
autoCreateSubnetworks: false,
});
const defaultSubnetwork = new gcp.compute.Subnetwork("default", {
name: "basic-subnetwork",
region: "us-central1",
network: defaultNetwork.id,
ipCidrRange: "10.0.0.0/16",
});
const rejectedProducerProject = new gcp.organizations.Project("rejected_producer_project", {
projectId: "prj-rejected",
name: "prj-rejected",
orgId: "123456789",
billingAccount: "000000-0000000-0000000-000000",
});
const acceptedProducerProject = new gcp.organizations.Project("accepted_producer_project", {
projectId: "prj-accepted",
name: "prj-accepted",
orgId: "123456789",
billingAccount: "000000-0000000-0000000-000000",
});
const _default = new gcp.compute.NetworkAttachment("default", {
name: "basic-network-attachment",
region: "us-central1",
description: "basic network attachment description",
connectionPreference: "ACCEPT_MANUAL",
subnetworks: [defaultSubnetwork&#46;selfLink],
producerAcceptLists: [acceptedProducerProject&#46;projectId],
producerRejectLists: [rejectedProducerProject&#46;projectId],
});
import pulumi
import pulumi_gcp as gcp
default_network = gcp.compute.Network("default",
name="basic-network",
auto_create_subnetworks=False)
default_subnetwork = gcp.compute.Subnetwork("default",
name="basic-subnetwork",
region="us-central1",
network=default_network.id,
ip_cidr_range="10.0.0.0/16")
rejected_producer_project = gcp.organizations.Project("rejected_producer_project",
project_id="prj-rejected",
name="prj-rejected",
org_id="123456789",
billing_account="000000-0000000-0000000-000000")
accepted_producer_project = gcp.organizations.Project("accepted_producer_project",
project_id="prj-accepted",
name="prj-accepted",
org_id="123456789",
billing_account="000000-0000000-0000000-000000")
default = gcp.compute.NetworkAttachment("default",
name="basic-network-attachment",
region="us-central1",
description="basic network attachment description",
connection_preference="ACCEPT_MANUAL",
subnetworks=[default_subnetwork&#46;self_link],
producer_accept_lists=[accepted_producer_project&#46;project_id],
producer_reject_lists=[rejected_producer_project&#46;project_id])
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var defaultNetwork = new Gcp.Compute.Network("default", new()
{
Name = "basic-network",
AutoCreateSubnetworks = false,
});
var defaultSubnetwork = new Gcp.Compute.Subnetwork("default", new()
{
Name = "basic-subnetwork",
Region = "us-central1",
Network = defaultNetwork.Id,
IpCidrRange = "10.0.0.0/16",
});
var rejectedProducerProject = new Gcp.Organizations.Project("rejected_producer_project", new()
{
ProjectId = "prj-rejected",
Name = "prj-rejected",
OrgId = "123456789",
BillingAccount = "000000-0000000-0000000-000000",
});
var acceptedProducerProject = new Gcp.Organizations.Project("accepted_producer_project", new()
{
ProjectId = "prj-accepted",
Name = "prj-accepted",
OrgId = "123456789",
BillingAccount = "000000-0000000-0000000-000000",
});
var @default = new Gcp.Compute.NetworkAttachment("default", new()
{
Name = "basic-network-attachment",
Region = "us-central1",
Description = "basic network attachment description",
ConnectionPreference = "ACCEPT_MANUAL",
Subnetworks = new[]
{
defaultSubnetwork.SelfLink,
},
ProducerAcceptLists = new[]
{
acceptedProducerProject.ProjectId,
},
ProducerRejectLists = new[]
{
rejectedProducerProject.ProjectId,
},
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
defaultNetwork, err := compute.NewNetwork(ctx, "default", &compute.NetworkArgs{
Name: pulumi.String("basic-network"),
AutoCreateSubnetworks: pulumi.Bool(false),
})
if err != nil {
return err
}
defaultSubnetwork, err := compute.NewSubnetwork(ctx, "default", &compute.SubnetworkArgs{
Name: pulumi.String("basic-subnetwork"),
Region: pulumi.String("us-central1"),
Network: defaultNetwork.ID(),
IpCidrRange: pulumi.String("10.0.0.0/16"),
})
if err != nil {
return err
}
rejectedProducerProject, err := organizations.NewProject(ctx, "rejected_producer_project", &organizations.ProjectArgs{
ProjectId: pulumi.String("prj-rejected"),
Name: pulumi.String("prj-rejected"),
OrgId: pulumi.String("123456789"),
BillingAccount: pulumi.String("000000-0000000-0000000-000000"),
})
if err != nil {
return err
}
acceptedProducerProject, err := organizations.NewProject(ctx, "accepted_producer_project", &organizations.ProjectArgs{
ProjectId: pulumi.String("prj-accepted"),
Name: pulumi.String("prj-accepted"),
OrgId: pulumi.String("123456789"),
BillingAccount: pulumi.String("000000-0000000-0000000-000000"),
})
if err != nil {
return err
}
_, err = compute.NewNetworkAttachment(ctx, "default", &compute.NetworkAttachmentArgs{
Name: pulumi.String("basic-network-attachment"),
Region: pulumi.String("us-central1"),
Description: pulumi.String("basic network attachment description"),
ConnectionPreference: pulumi.String("ACCEPT_MANUAL"),
Subnetworks: pulumi.StringArray{
defaultSubnetwork.SelfLink,
},
ProducerAcceptLists: pulumi.StringArray{
acceptedProducerProject.ProjectId,
},
ProducerRejectLists: pulumi.StringArray{
rejectedProducerProject.ProjectId,
},
})
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.compute.Network;
import com.pulumi.gcp.compute.NetworkArgs;
import com.pulumi.gcp.compute.Subnetwork;
import com.pulumi.gcp.compute.SubnetworkArgs;
import com.pulumi.gcp.organizations.Project;
import com.pulumi.gcp.organizations.ProjectArgs;
import com.pulumi.gcp.compute.NetworkAttachment;
import com.pulumi.gcp.compute.NetworkAttachmentArgs;
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 defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
.name("basic-network")
.autoCreateSubnetworks(false)
.build());
var defaultSubnetwork = new Subnetwork("defaultSubnetwork", SubnetworkArgs.builder()
.name("basic-subnetwork")
.region("us-central1")
.network(defaultNetwork.id())
.ipCidrRange("10.0.0.0/16")
.build());
var rejectedProducerProject = new Project("rejectedProducerProject", ProjectArgs.builder()
.projectId("prj-rejected")
.name("prj-rejected")
.orgId("123456789")
.billingAccount("000000-0000000-0000000-000000")
.build());
var acceptedProducerProject = new Project("acceptedProducerProject", ProjectArgs.builder()
.projectId("prj-accepted")
.name("prj-accepted")
.orgId("123456789")
.billingAccount("000000-0000000-0000000-000000")
.build());
var default_ = new NetworkAttachment("default", NetworkAttachmentArgs.builder()
.name("basic-network-attachment")
.region("us-central1")
.description("basic network attachment description")
.connectionPreference("ACCEPT_MANUAL")
.subnetworks(defaultSubnetwork.selfLink())
.producerAcceptLists(acceptedProducerProject.projectId())
.producerRejectLists(rejectedProducerProject.projectId())
.build());
}
}
resources:
default:
type: gcp:compute:NetworkAttachment
properties:
name: basic-network-attachment
region: us-central1
description: basic network attachment description
connectionPreference: ACCEPT_MANUAL
subnetworks:
- ${defaultSubnetwork.selfLink}
producerAcceptLists:
- ${acceptedProducerProject.projectId}
producerRejectLists:
- ${rejectedProducerProject.projectId}
defaultNetwork:
type: gcp:compute:Network
name: default
properties:
name: basic-network
autoCreateSubnetworks: false
defaultSubnetwork:
type: gcp:compute:Subnetwork
name: default
properties:
name: basic-subnetwork
region: us-central1
network: ${defaultNetwork.id}
ipCidrRange: 10.0.0.0/16
rejectedProducerProject:
type: gcp:organizations:Project
name: rejected_producer_project
properties:
projectId: prj-rejected
name: prj-rejected
orgId: '123456789'
billingAccount: 000000-0000000-0000000-000000
acceptedProducerProject:
type: gcp:organizations:Project
name: accepted_producer_project
properties:
projectId: prj-accepted
name: prj-accepted
orgId: '123456789'
billingAccount: 000000-0000000-0000000-000000

Network Attachment Instance Usage

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const _default = new gcp.compute.Network("default", {
name: "basic-network",
autoCreateSubnetworks: false,
});
const defaultSubnetwork = new gcp.compute.Subnetwork("default", {
name: "basic-subnetwork",
region: "us-central1",
network: _default.id,
ipCidrRange: "10.0.0.0/16",
});
const defaultNetworkAttachment = new gcp.compute.NetworkAttachment("default", {
name: "basic-network-attachment",
region: "us-central1",
description: "my basic network attachment",
subnetworks: [defaultSubnetwork&#46;id],
connectionPreference: "ACCEPT_AUTOMATIC",
});
const defaultInstance = new gcp.compute.Instance("default", {
name: "basic-instance",
zone: "us-central1-a",
machineType: "e2-micro",
bootDisk: {
initializeParams: {
image: "debian-cloud/debian-11",
},
},
networkInterfaces: [
{
network: "default",
},
{
networkAttachment: defaultNetworkAttachment.selfLink,
},
],
});
import pulumi
import pulumi_gcp as gcp
default = gcp.compute.Network("default",
name="basic-network",
auto_create_subnetworks=False)
default_subnetwork = gcp.compute.Subnetwork("default",
name="basic-subnetwork",
region="us-central1",
network=default.id,
ip_cidr_range="10.0.0.0/16")
default_network_attachment = gcp.compute.NetworkAttachment("default",
name="basic-network-attachment",
region="us-central1",
description="my basic network attachment",
subnetworks=[default_subnetwork&#46;id],
connection_preference="ACCEPT_AUTOMATIC")
default_instance = gcp.compute.Instance("default",
name="basic-instance",
zone="us-central1-a",
machine_type="e2-micro",
boot_disk={
"initialize_params": {
"image": "debian-cloud/debian-11",
},
},
network_interfaces=[
{
"network": "default",
},
{
"network_attachment": default_network_attachment.self_link,
},
])
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var @default = new Gcp.Compute.Network("default", new()
{
Name = "basic-network",
AutoCreateSubnetworks = false,
});
var defaultSubnetwork = new Gcp.Compute.Subnetwork("default", new()
{
Name = "basic-subnetwork",
Region = "us-central1",
Network = @default.Id,
IpCidrRange = "10.0.0.0/16",
});
var defaultNetworkAttachment = new Gcp.Compute.NetworkAttachment("default", new()
{
Name = "basic-network-attachment",
Region = "us-central1",
Description = "my basic network attachment",
Subnetworks = new[]
{
defaultSubnetwork.Id,
},
ConnectionPreference = "ACCEPT_AUTOMATIC",
});
var defaultInstance = new Gcp.Compute.Instance("default", new()
{
Name = "basic-instance",
Zone = "us-central1-a",
MachineType = "e2-micro",
BootDisk = new Gcp.Compute.Inputs.InstanceBootDiskArgs
{
InitializeParams = new Gcp.Compute.Inputs.InstanceBootDiskInitializeParamsArgs
{
Image = "debian-cloud/debian-11",
},
},
NetworkInterfaces = new[]
{
new Gcp.Compute.Inputs.InstanceNetworkInterfaceArgs
{
Network = "default",
},
new Gcp.Compute.Inputs.InstanceNetworkInterfaceArgs
{
NetworkAttachment = defaultNetworkAttachment.SelfLink,
},
},
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := compute.NewNetwork(ctx, "default", &compute.NetworkArgs{
Name: pulumi.String("basic-network"),
AutoCreateSubnetworks: pulumi.Bool(false),
})
if err != nil {
return err
}
defaultSubnetwork, err := compute.NewSubnetwork(ctx, "default", &compute.SubnetworkArgs{
Name: pulumi.String("basic-subnetwork"),
Region: pulumi.String("us-central1"),
Network: _default.ID(),
IpCidrRange: pulumi.String("10.0.0.0/16"),
})
if err != nil {
return err
}
defaultNetworkAttachment, err := compute.NewNetworkAttachment(ctx, "default", &compute.NetworkAttachmentArgs{
Name: pulumi.String("basic-network-attachment"),
Region: pulumi.String("us-central1"),
Description: pulumi.String("my basic network attachment"),
Subnetworks: pulumi.StringArray{
defaultSubnetwork.ID(),
},
ConnectionPreference: pulumi.String("ACCEPT_AUTOMATIC"),
})
if err != nil {
return err
}
_, err = compute.NewInstance(ctx, "default", &compute.InstanceArgs{
Name: pulumi.String("basic-instance"),
Zone: pulumi.String("us-central1-a"),
MachineType: pulumi.String("e2-micro"),
BootDisk: &compute.InstanceBootDiskArgs{
InitializeParams: &compute.InstanceBootDiskInitializeParamsArgs{
Image: pulumi.String("debian-cloud/debian-11"),
},
},
NetworkInterfaces: compute.InstanceNetworkInterfaceArray{
&compute.InstanceNetworkInterfaceArgs{
Network: pulumi.String("default"),
},
&compute.InstanceNetworkInterfaceArgs{
NetworkAttachment: defaultNetworkAttachment.SelfLink,
},
},
})
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.compute.Network;
import com.pulumi.gcp.compute.NetworkArgs;
import com.pulumi.gcp.compute.Subnetwork;
import com.pulumi.gcp.compute.SubnetworkArgs;
import com.pulumi.gcp.compute.NetworkAttachment;
import com.pulumi.gcp.compute.NetworkAttachmentArgs;
import com.pulumi.gcp.compute.Instance;
import com.pulumi.gcp.compute.InstanceArgs;
import com.pulumi.gcp.compute.inputs.InstanceBootDiskArgs;
import com.pulumi.gcp.compute.inputs.InstanceBootDiskInitializeParamsArgs;
import com.pulumi.gcp.compute.inputs.InstanceNetworkInterfaceArgs;
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 default_ = new Network("default", NetworkArgs.builder()
.name("basic-network")
.autoCreateSubnetworks(false)
.build());
var defaultSubnetwork = new Subnetwork("defaultSubnetwork", SubnetworkArgs.builder()
.name("basic-subnetwork")
.region("us-central1")
.network(default_.id())
.ipCidrRange("10.0.0.0/16")
.build());
var defaultNetworkAttachment = new NetworkAttachment("defaultNetworkAttachment", NetworkAttachmentArgs.builder()
.name("basic-network-attachment")
.region("us-central1")
.description("my basic network attachment")
.subnetworks(defaultSubnetwork.id())
.connectionPreference("ACCEPT_AUTOMATIC")
.build());
var defaultInstance = new Instance("defaultInstance", InstanceArgs.builder()
.name("basic-instance")
.zone("us-central1-a")
.machineType("e2-micro")
.bootDisk(InstanceBootDiskArgs.builder()
.initializeParams(InstanceBootDiskInitializeParamsArgs.builder()
.image("debian-cloud/debian-11")
.build())
.build())
.networkInterfaces(
InstanceNetworkInterfaceArgs.builder()
.network("default")
.build(),
InstanceNetworkInterfaceArgs.builder()
.networkAttachment(defaultNetworkAttachment.selfLink())
.build())
.build());
}
}
resources:
default:
type: gcp:compute:Network
properties:
name: basic-network
autoCreateSubnetworks: false
defaultSubnetwork:
type: gcp:compute:Subnetwork
name: default
properties:
name: basic-subnetwork
region: us-central1
network: ${default.id}
ipCidrRange: 10.0.0.0/16
defaultNetworkAttachment:
type: gcp:compute:NetworkAttachment
name: default
properties:
name: basic-network-attachment
region: us-central1
description: my basic network attachment
subnetworks:
- ${defaultSubnetwork.id}
connectionPreference: ACCEPT_AUTOMATIC
defaultInstance:
type: gcp:compute:Instance
name: default
properties:
name: basic-instance
zone: us-central1-a
machineType: e2-micro
bootDisk:
initializeParams:
image: debian-cloud/debian-11
networkInterfaces:
- network: default
- networkAttachment: ${defaultNetworkAttachment.selfLink}

Import

NetworkAttachment can be imported using any of these accepted formats:

  • projects/{{project}}/regions/{{region}}/networkAttachments/{{name}}

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

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

  • {{name}} When using the pulumi import command, NetworkAttachment can be imported using one of the formats above. For example:

$ pulumi import gcp:compute/networkAttachment:NetworkAttachment default projects/{{project}}/regions/{{region}}/networkAttachments/{{name}}
$ pulumi import gcp:compute/networkAttachment:NetworkAttachment default {{project}}/{{region}}/{{name}}
$ pulumi import gcp:compute/networkAttachment:NetworkAttachment default {{region}}/{{name}}
$ pulumi import gcp:compute/networkAttachment:NetworkAttachment default {{name}}

Constructors

Link copied to clipboard
constructor(connectionPreference: Output<String>? = null, description: Output<String>? = null, name: Output<String>? = null, producerAcceptLists: Output<List<String>>? = null, producerRejectLists: Output<List<String>>? = null, project: Output<String>? = null, region: Output<String>? = null, subnetworks: Output<List<String>>? = null)

Properties

Link copied to clipboard
val connectionPreference: Output<String>? = null

The connection preference of service attachment. The value can be set to ACCEPT_AUTOMATIC. An ACCEPT_AUTOMATIC service attachment is one that always accepts the connection from consumer forwarding rules. Possible values are: ACCEPT_AUTOMATIC, ACCEPT_MANUAL, INVALID.

Link copied to clipboard
val description: Output<String>? = null

An optional description of this resource. Provide this property when you create the resource.

Link copied to clipboard
val name: Output<String>? = null

Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.

Link copied to clipboard
val producerAcceptLists: Output<List<String>>? = null

Projects that are allowed to connect to this network attachment. The project can be specified using its id or number.

Link copied to clipboard
val producerRejectLists: Output<List<String>>? = null

Projects that are not allowed to connect to this network attachment. The project can be specified using its id or number.

Link copied to clipboard
val project: Output<String>? = null

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Link copied to clipboard
val region: Output<String>? = null

URL of the region where the network attachment resides. This field applies only to the region resource. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body.

Link copied to clipboard
val subnetworks: Output<List<String>>? = null

An array of URLs where each entry is the URL of a subnet provided by the service consumer to use for endpoints in the producers that connect to this network attachment.

Functions

Link copied to clipboard
open override fun toJava(): NetworkAttachmentArgs