com.pulumi.gcp.networksecurity.kotlin.FirewallEndpointAssociationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.networksecurity.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.networksecurity.FirewallEndpointAssociationArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* Firewall endpoint association links a firewall endpoint to a VPC network in
* the same zone. After you define this association, Cloud Firewall forwards the
* zonal workload traffic in your VPC network that requires layer 7 inspection to
* the attached firewall endpoint.
* To get more information about FirewallEndpointAssociation, see:
* * [API documentation](https://cloud.google.com/firewall/docs/reference/network-security/rest/v1/projects.locations.firewallEndpointAssociations#FirewallEndpointAssociation)
* * How-to Guides
* * [Firewall endpoint overview](https://cloud.google.com/firewall/docs/about-firewall-endpoints)
* * [Create and associate firewall endpoints](https://cloud.google.com/firewall/docs/configure-firewall-endpoints)
* ## Example Usage
* ### Network Security Firewall Endpoint Association Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const _default = new gcp.networksecurity.FirewallEndpoint("default", {
* name: "my-firewall-endpoint",
* parent: "organizations/123456789",
* location: "us-central1-a",
* labels: {
* foo: "bar",
* },
* });
* const defaultAssociation = new gcp.networksecurity.FirewallEndpointAssociation("default_association", {
* name: "my-firewall-endpoint-association",
* parent: "projects/my-project-name",
* location: "us-central1-a",
* labels: {
* foo: "bar",
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* default = gcp.networksecurity.FirewallEndpoint("default",
* name="my-firewall-endpoint",
* parent="organizations/123456789",
* location="us-central1-a",
* labels={
* "foo": "bar",
* })
* default_association = gcp.networksecurity.FirewallEndpointAssociation("default_association",
* name="my-firewall-endpoint-association",
* parent="projects/my-project-name",
* location="us-central1-a",
* labels={
* "foo": "bar",
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var @default = new Gcp.NetworkSecurity.FirewallEndpoint("default", new()
* {
* Name = "my-firewall-endpoint",
* Parent = "organizations/123456789",
* Location = "us-central1-a",
* Labels =
* {
* { "foo", "bar" },
* },
* });
* var defaultAssociation = new Gcp.NetworkSecurity.FirewallEndpointAssociation("default_association", new()
* {
* Name = "my-firewall-endpoint-association",
* Parent = "projects/my-project-name",
* Location = "us-central1-a",
* Labels =
* {
* { "foo", "bar" },
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/networksecurity"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := networksecurity.NewFirewallEndpoint(ctx, "default", &networksecurity.FirewallEndpointArgs{
* Name: pulumi.String("my-firewall-endpoint"),
* Parent: pulumi.String("organizations/123456789"),
* Location: pulumi.String("us-central1-a"),
* Labels: pulumi.StringMap{
* "foo": pulumi.String("bar"),
* },
* })
* if err != nil {
* return err
* }
* _, err = networksecurity.NewFirewallEndpointAssociation(ctx, "default_association", &networksecurity.FirewallEndpointAssociationArgs{
* Name: pulumi.String("my-firewall-endpoint-association"),
* Parent: pulumi.String("projects/my-project-name"),
* Location: pulumi.String("us-central1-a"),
* Labels: pulumi.StringMap{
* "foo": pulumi.String("bar"),
* },
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.networksecurity.FirewallEndpoint;
* import com.pulumi.gcp.networksecurity.FirewallEndpointArgs;
* import com.pulumi.gcp.networksecurity.FirewallEndpointAssociation;
* import com.pulumi.gcp.networksecurity.FirewallEndpointAssociationArgs;
* 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 FirewallEndpoint("default", FirewallEndpointArgs.builder()
* .name("my-firewall-endpoint")
* .parent("organizations/123456789")
* .location("us-central1-a")
* .labels(Map.of("foo", "bar"))
* .build());
* var defaultAssociation = new FirewallEndpointAssociation("defaultAssociation", FirewallEndpointAssociationArgs.builder()
* .name("my-firewall-endpoint-association")
* .parent("projects/my-project-name")
* .location("us-central1-a")
* .labels(Map.of("foo", "bar"))
* .build());
* }
* }
* ```
* ```yaml
* resources:
* default:
* type: gcp:networksecurity:FirewallEndpoint
* properties:
* name: my-firewall-endpoint
* parent: organizations/123456789
* location: us-central1-a
* labels:
* foo: bar
* defaultAssociation:
* type: gcp:networksecurity:FirewallEndpointAssociation
* name: default_association
* properties:
* name: my-firewall-endpoint-association
* parent: projects/my-project-name
* location: us-central1-a
* labels:
* foo: bar
* ```
*
* ## Import
* FirewallEndpointAssociation can be imported using any of these accepted formats:
* * `{{parent}}/locations/{{location}}/firewallEndpointAssociations/{{name}}`
* When using the `pulumi import` command, FirewallEndpointAssociation can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:networksecurity/firewallEndpointAssociation:FirewallEndpointAssociation default {{parent}}/locations/{{location}}/firewallEndpointAssociations/{{name}}
* ```
* @property disabled Whether the association is disabled. True indicates that traffic will not be intercepted.
* > **Note:** The API will reject the request if this value is set to true when creating the resource,
* otherwise on an update the association can be disabled.
* @property firewallEndpoint The URL of the firewall endpoint that is being associated.
* @property labels A map of key/value label pairs to assign to the resource.
* **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.
* @property location The location (zone) of the firewall endpoint association.
* - - -
* @property name The name of the firewall endpoint association resource.
* @property network The URL of the network that is being associated.
* @property parent The name of the parent this firewall endpoint association belongs to.
* Format: projects/{project_id}.
* @property tlsInspectionPolicy The URL of the TlsInspectionPolicy that is being associated.
*/
public data class FirewallEndpointAssociationArgs(
public val disabled: Output? = null,
public val firewallEndpoint: Output? = null,
public val labels: Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy