gcp.compute.RegionNetworkFirewallPolicyAssociation
Explore with Pulumi AI
The Compute NetworkFirewallPolicyAssociation resource
Example Usage
Regional
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const basicRegionalNetworkFirewallPolicy = new gcp.compute.RegionNetworkFirewallPolicy("basic_regional_network_firewall_policy", {
name: "policy",
project: "my-project-name",
description: "Sample global network firewall policy",
region: "us-west1",
});
const basicNetwork = new gcp.compute.Network("basic_network", {name: "network"});
const primary = new gcp.compute.RegionNetworkFirewallPolicyAssociation("primary", {
name: "association",
attachmentTarget: basicNetwork.id,
firewallPolicy: basicRegionalNetworkFirewallPolicy.name,
project: "my-project-name",
region: "us-west1",
});
import pulumi
import pulumi_gcp as gcp
basic_regional_network_firewall_policy = gcp.compute.RegionNetworkFirewallPolicy("basic_regional_network_firewall_policy",
name="policy",
project="my-project-name",
description="Sample global network firewall policy",
region="us-west1")
basic_network = gcp.compute.Network("basic_network", name="network")
primary = gcp.compute.RegionNetworkFirewallPolicyAssociation("primary",
name="association",
attachment_target=basic_network.id,
firewall_policy=basic_regional_network_firewall_policy.name,
project="my-project-name",
region="us-west1")
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 {
basicRegionalNetworkFirewallPolicy, err := compute.NewRegionNetworkFirewallPolicy(ctx, "basic_regional_network_firewall_policy", &compute.RegionNetworkFirewallPolicyArgs{
Name: pulumi.String("policy"),
Project: pulumi.String("my-project-name"),
Description: pulumi.String("Sample global network firewall policy"),
Region: pulumi.String("us-west1"),
})
if err != nil {
return err
}
basicNetwork, err := compute.NewNetwork(ctx, "basic_network", &compute.NetworkArgs{
Name: pulumi.String("network"),
})
if err != nil {
return err
}
_, err = compute.NewRegionNetworkFirewallPolicyAssociation(ctx, "primary", &compute.RegionNetworkFirewallPolicyAssociationArgs{
Name: pulumi.String("association"),
AttachmentTarget: basicNetwork.ID(),
FirewallPolicy: basicRegionalNetworkFirewallPolicy.Name,
Project: pulumi.String("my-project-name"),
Region: pulumi.String("us-west1"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var basicRegionalNetworkFirewallPolicy = new Gcp.Compute.RegionNetworkFirewallPolicy("basic_regional_network_firewall_policy", new()
{
Name = "policy",
Project = "my-project-name",
Description = "Sample global network firewall policy",
Region = "us-west1",
});
var basicNetwork = new Gcp.Compute.Network("basic_network", new()
{
Name = "network",
});
var primary = new Gcp.Compute.RegionNetworkFirewallPolicyAssociation("primary", new()
{
Name = "association",
AttachmentTarget = basicNetwork.Id,
FirewallPolicy = basicRegionalNetworkFirewallPolicy.Name,
Project = "my-project-name",
Region = "us-west1",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionNetworkFirewallPolicy;
import com.pulumi.gcp.compute.RegionNetworkFirewallPolicyArgs;
import com.pulumi.gcp.compute.Network;
import com.pulumi.gcp.compute.NetworkArgs;
import com.pulumi.gcp.compute.RegionNetworkFirewallPolicyAssociation;
import com.pulumi.gcp.compute.RegionNetworkFirewallPolicyAssociationArgs;
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 basicRegionalNetworkFirewallPolicy = new RegionNetworkFirewallPolicy("basicRegionalNetworkFirewallPolicy", RegionNetworkFirewallPolicyArgs.builder()
.name("policy")
.project("my-project-name")
.description("Sample global network firewall policy")
.region("us-west1")
.build());
var basicNetwork = new Network("basicNetwork", NetworkArgs.builder()
.name("network")
.build());
var primary = new RegionNetworkFirewallPolicyAssociation("primary", RegionNetworkFirewallPolicyAssociationArgs.builder()
.name("association")
.attachmentTarget(basicNetwork.id())
.firewallPolicy(basicRegionalNetworkFirewallPolicy.name())
.project("my-project-name")
.region("us-west1")
.build());
}
}
resources:
basicRegionalNetworkFirewallPolicy:
type: gcp:compute:RegionNetworkFirewallPolicy
name: basic_regional_network_firewall_policy
properties:
name: policy
project: my-project-name
description: Sample global network firewall policy
region: us-west1
basicNetwork:
type: gcp:compute:Network
name: basic_network
properties:
name: network
primary:
type: gcp:compute:RegionNetworkFirewallPolicyAssociation
properties:
name: association
attachmentTarget: ${basicNetwork.id}
firewallPolicy: ${basicRegionalNetworkFirewallPolicy.name}
project: my-project-name
region: us-west1
Create RegionNetworkFirewallPolicyAssociation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RegionNetworkFirewallPolicyAssociation(name: string, args: RegionNetworkFirewallPolicyAssociationArgs, opts?: CustomResourceOptions);
@overload
def RegionNetworkFirewallPolicyAssociation(resource_name: str,
args: RegionNetworkFirewallPolicyAssociationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RegionNetworkFirewallPolicyAssociation(resource_name: str,
opts: Optional[ResourceOptions] = None,
attachment_target: Optional[str] = None,
firewall_policy: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None,
region: Optional[str] = None)
func NewRegionNetworkFirewallPolicyAssociation(ctx *Context, name string, args RegionNetworkFirewallPolicyAssociationArgs, opts ...ResourceOption) (*RegionNetworkFirewallPolicyAssociation, error)
public RegionNetworkFirewallPolicyAssociation(string name, RegionNetworkFirewallPolicyAssociationArgs args, CustomResourceOptions? opts = null)
public RegionNetworkFirewallPolicyAssociation(String name, RegionNetworkFirewallPolicyAssociationArgs args)
public RegionNetworkFirewallPolicyAssociation(String name, RegionNetworkFirewallPolicyAssociationArgs args, CustomResourceOptions options)
type: gcp:compute:RegionNetworkFirewallPolicyAssociation
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RegionNetworkFirewallPolicyAssociationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RegionNetworkFirewallPolicyAssociationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RegionNetworkFirewallPolicyAssociationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RegionNetworkFirewallPolicyAssociationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RegionNetworkFirewallPolicyAssociationArgs
- 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 regionNetworkFirewallPolicyAssociationResource = new Gcp.Compute.RegionNetworkFirewallPolicyAssociation("regionNetworkFirewallPolicyAssociationResource", new()
{
AttachmentTarget = "string",
FirewallPolicy = "string",
Name = "string",
Project = "string",
Region = "string",
});
example, err := compute.NewRegionNetworkFirewallPolicyAssociation(ctx, "regionNetworkFirewallPolicyAssociationResource", &compute.RegionNetworkFirewallPolicyAssociationArgs{
AttachmentTarget: pulumi.String("string"),
FirewallPolicy: pulumi.String("string"),
Name: pulumi.String("string"),
Project: pulumi.String("string"),
Region: pulumi.String("string"),
})
var regionNetworkFirewallPolicyAssociationResource = new RegionNetworkFirewallPolicyAssociation("regionNetworkFirewallPolicyAssociationResource", RegionNetworkFirewallPolicyAssociationArgs.builder()
.attachmentTarget("string")
.firewallPolicy("string")
.name("string")
.project("string")
.region("string")
.build());
region_network_firewall_policy_association_resource = gcp.compute.RegionNetworkFirewallPolicyAssociation("regionNetworkFirewallPolicyAssociationResource",
attachment_target="string",
firewall_policy="string",
name="string",
project="string",
region="string")
const regionNetworkFirewallPolicyAssociationResource = new gcp.compute.RegionNetworkFirewallPolicyAssociation("regionNetworkFirewallPolicyAssociationResource", {
attachmentTarget: "string",
firewallPolicy: "string",
name: "string",
project: "string",
region: "string",
});
type: gcp:compute:RegionNetworkFirewallPolicyAssociation
properties:
attachmentTarget: string
firewallPolicy: string
name: string
project: string
region: string
RegionNetworkFirewallPolicyAssociation Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The RegionNetworkFirewallPolicyAssociation resource accepts the following input properties:
- Attachment
Target string - The target that the firewall policy is attached to.
- Firewall
Policy string - The firewall policy ID of the association.
- Name string
- The name for an association.
- Project string
- The project for the resource
- Region string
- The location of this resource.
- Attachment
Target string - The target that the firewall policy is attached to.
- Firewall
Policy string - The firewall policy ID of the association.
- Name string
- The name for an association.
- Project string
- The project for the resource
- Region string
- The location of this resource.
- attachment
Target String - The target that the firewall policy is attached to.
- firewall
Policy String - The firewall policy ID of the association.
- name String
- The name for an association.
- project String
- The project for the resource
- region String
- The location of this resource.
- attachment
Target string - The target that the firewall policy is attached to.
- firewall
Policy string - The firewall policy ID of the association.
- name string
- The name for an association.
- project string
- The project for the resource
- region string
- The location of this resource.
- attachment_
target str - The target that the firewall policy is attached to.
- firewall_
policy str - The firewall policy ID of the association.
- name str
- The name for an association.
- project str
- The project for the resource
- region str
- The location of this resource.
- attachment
Target String - The target that the firewall policy is attached to.
- firewall
Policy String - The firewall policy ID of the association.
- name String
- The name for an association.
- project String
- The project for the resource
- region String
- The location of this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the RegionNetworkFirewallPolicyAssociation resource produces the following output properties:
- id str
- The provider-assigned unique ID for this managed resource.
- short_
name str - The short name of the firewall policy of the association.
Look up Existing RegionNetworkFirewallPolicyAssociation Resource
Get an existing RegionNetworkFirewallPolicyAssociation 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?: RegionNetworkFirewallPolicyAssociationState, opts?: CustomResourceOptions): RegionNetworkFirewallPolicyAssociation
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
attachment_target: Optional[str] = None,
firewall_policy: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None,
region: Optional[str] = None,
short_name: Optional[str] = None) -> RegionNetworkFirewallPolicyAssociation
func GetRegionNetworkFirewallPolicyAssociation(ctx *Context, name string, id IDInput, state *RegionNetworkFirewallPolicyAssociationState, opts ...ResourceOption) (*RegionNetworkFirewallPolicyAssociation, error)
public static RegionNetworkFirewallPolicyAssociation Get(string name, Input<string> id, RegionNetworkFirewallPolicyAssociationState? state, CustomResourceOptions? opts = null)
public static RegionNetworkFirewallPolicyAssociation get(String name, Output<String> id, RegionNetworkFirewallPolicyAssociationState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Attachment
Target string - The target that the firewall policy is attached to.
- Firewall
Policy string - The firewall policy ID of the association.
- Name string
- The name for an association.
- Project string
- The project for the resource
- Region string
- The location of this resource.
- Short
Name string - The short name of the firewall policy of the association.
- Attachment
Target string - The target that the firewall policy is attached to.
- Firewall
Policy string - The firewall policy ID of the association.
- Name string
- The name for an association.
- Project string
- The project for the resource
- Region string
- The location of this resource.
- Short
Name string - The short name of the firewall policy of the association.
- attachment
Target String - The target that the firewall policy is attached to.
- firewall
Policy String - The firewall policy ID of the association.
- name String
- The name for an association.
- project String
- The project for the resource
- region String
- The location of this resource.
- short
Name String - The short name of the firewall policy of the association.
- attachment
Target string - The target that the firewall policy is attached to.
- firewall
Policy string - The firewall policy ID of the association.
- name string
- The name for an association.
- project string
- The project for the resource
- region string
- The location of this resource.
- short
Name string - The short name of the firewall policy of the association.
- attachment_
target str - The target that the firewall policy is attached to.
- firewall_
policy str - The firewall policy ID of the association.
- name str
- The name for an association.
- project str
- The project for the resource
- region str
- The location of this resource.
- short_
name str - The short name of the firewall policy of the association.
- attachment
Target String - The target that the firewall policy is attached to.
- firewall
Policy String - The firewall policy ID of the association.
- name String
- The name for an association.
- project String
- The project for the resource
- region String
- The location of this resource.
- short
Name String - The short name of the firewall policy of the association.
Import
NetworkFirewallPolicyAssociation can be imported using any of these accepted formats:
projects/{{project}}/regions/{{region}}/firewallPolicies/{{firewall_policy}}/associations/{{name}}
{{project}}/{{region}}/{{firewall_policy}}/{{name}}
When using the pulumi import
command, NetworkFirewallPolicyAssociation can be imported using one of the formats above. For example:
$ pulumi import gcp:compute/regionNetworkFirewallPolicyAssociation:RegionNetworkFirewallPolicyAssociation default projects/{{project}}/regions/{{region}}/firewallPolicies/{{firewall_policy}}/associations/{{name}}
$ pulumi import gcp:compute/regionNetworkFirewallPolicyAssociation:RegionNetworkFirewallPolicyAssociation default {{project}}/{{region}}/{{firewall_policy}}/{{name}}
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.