Firewall

class Firewall : KotlinCustomResource

Each network has its own firewall controlling access to and from the instances. All traffic to instances, even from other instances, is blocked by the firewall unless firewall rules are created to allow it. The default network has automatically created firewall rules that are shown in default firewall rules. No manually created network has automatically created firewall rules except for a default "allow" rule for outgoing traffic and a default "deny" for incoming traffic. For all networks except the default network, you must create any firewall rules you need. To get more information about Firewall, see:

Example Usage

Firewall Basic

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const defaultNetwork = new gcp.compute.Network("default", {name: "test-network"});
const _default = new gcp.compute.Firewall("default", {
name: "test-firewall",
network: defaultNetwork.name,
allows: [
{
protocol: "icmp",
},
{
protocol: "tcp",
ports: [
"80",
"8080",
"1000-2000",
],
},
],
sourceTags: ["web"],
});
import pulumi
import pulumi_gcp as gcp
default_network = gcp.compute.Network("default", name="test-network")
default = gcp.compute.Firewall("default",
name="test-firewall",
network=default_network.name,
allows=[
{
"protocol": "icmp",
},
{
"protocol": "tcp",
"ports": [
"80",
"8080",
"1000-2000",
],
},
],
source_tags=["web"])
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 = "test-network",
});
var @default = new Gcp.Compute.Firewall("default", new()
{
Name = "test-firewall",
Network = defaultNetwork.Name,
Allows = new[]
{
new Gcp.Compute.Inputs.FirewallAllowArgs
{
Protocol = "icmp",
},
new Gcp.Compute.Inputs.FirewallAllowArgs
{
Protocol = "tcp",
Ports = new[]
{
"80",
"8080",
"1000-2000",
},
},
},
SourceTags = new[]
{
"web",
},
});
});
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 {
defaultNetwork, err := compute.NewNetwork(ctx, "default", &compute.NetworkArgs{
Name: pulumi.String("test-network"),
})
if err != nil {
return err
}
_, err = compute.NewFirewall(ctx, "default", &compute.FirewallArgs{
Name: pulumi.String("test-firewall"),
Network: defaultNetwork.Name,
Allows: compute.FirewallAllowArray{
&compute.FirewallAllowArgs{
Protocol: pulumi.String("icmp"),
},
&compute.FirewallAllowArgs{
Protocol: pulumi.String("tcp"),
Ports: pulumi.StringArray{
pulumi.String("80"),
pulumi.String("8080"),
pulumi.String("1000-2000"),
},
},
},
SourceTags: pulumi.StringArray{
pulumi.String("web"),
},
})
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.Firewall;
import com.pulumi.gcp.compute.FirewallArgs;
import com.pulumi.gcp.compute.inputs.FirewallAllowArgs;
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("test-network")
.build());
var default_ = new Firewall("default", FirewallArgs.builder()
.name("test-firewall")
.network(defaultNetwork.name())
.allows(
FirewallAllowArgs.builder()
.protocol("icmp")
.build(),
FirewallAllowArgs.builder()
.protocol("tcp")
.ports(
"80",
"8080",
"1000-2000")
.build())
.sourceTags("web")
.build());
}
}
resources:
default:
type: gcp:compute:Firewall
properties:
name: test-firewall
network: ${defaultNetwork.name}
allows:
- protocol: icmp
- protocol: tcp
ports:
- '80'
- '8080'
- 1000-2000
sourceTags:
- web
defaultNetwork:
type: gcp:compute:Network
name: default
properties:
name: test-network

Firewall With Target Tags

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const rules = new gcp.compute.Firewall("rules", {
project: "my-project-name",
name: "my-firewall-rule",
network: "default",
description: "Creates firewall rule targeting tagged instances",
allows: [{
protocol: "tcp",
ports: [
"80",
"8080",
"1000-2000",
],
}],
sourceTags: ["foo"],
targetTags: ["web"],
});
import pulumi
import pulumi_gcp as gcp
rules = gcp.compute.Firewall("rules",
project="my-project-name",
name="my-firewall-rule",
network="default",
description="Creates firewall rule targeting tagged instances",
allows=[{
"protocol": "tcp",
"ports": [
"80",
"8080",
"1000-2000",
],
}],
source_tags=["foo"],
target_tags=["web"])
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var rules = new Gcp.Compute.Firewall("rules", new()
{
Project = "my-project-name",
Name = "my-firewall-rule",
Network = "default",
Description = "Creates firewall rule targeting tagged instances",
Allows = new[]
{
new Gcp.Compute.Inputs.FirewallAllowArgs
{
Protocol = "tcp",
Ports = new[]
{
"80",
"8080",
"1000-2000",
},
},
},
SourceTags = new[]
{
"foo",
},
TargetTags = new[]
{
"web",
},
});
});
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.NewFirewall(ctx, "rules", &compute.FirewallArgs{
Project: pulumi.String("my-project-name"),
Name: pulumi.String("my-firewall-rule"),
Network: pulumi.String("default"),
Description: pulumi.String("Creates firewall rule targeting tagged instances"),
Allows: compute.FirewallAllowArray{
&compute.FirewallAllowArgs{
Protocol: pulumi.String("tcp"),
Ports: pulumi.StringArray{
pulumi.String("80"),
pulumi.String("8080"),
pulumi.String("1000-2000"),
},
},
},
SourceTags: pulumi.StringArray{
pulumi.String("foo"),
},
TargetTags: pulumi.StringArray{
pulumi.String("web"),
},
})
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.Firewall;
import com.pulumi.gcp.compute.FirewallArgs;
import com.pulumi.gcp.compute.inputs.FirewallAllowArgs;
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 rules = new Firewall("rules", FirewallArgs.builder()
.project("my-project-name")
.name("my-firewall-rule")
.network("default")
.description("Creates firewall rule targeting tagged instances")
.allows(FirewallAllowArgs.builder()
.protocol("tcp")
.ports(
"80",
"8080",
"1000-2000")
.build())
.sourceTags("foo")
.targetTags("web")
.build());
}
}
resources:
rules:
type: gcp:compute:Firewall
properties:
project: my-project-name
name: my-firewall-rule
network: default
description: Creates firewall rule targeting tagged instances
allows:
- protocol: tcp
ports:
- '80'
- '8080'
- 1000-2000
sourceTags:
- foo
targetTags:
- web

Import

Firewall can be imported using any of these accepted formats:

  • projects/{{project}}/global/firewalls/{{name}}

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

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

$ pulumi import gcp:compute/firewall:Firewall default projects/{{project}}/global/firewalls/{{name}}
$ pulumi import gcp:compute/firewall:Firewall default {{project}}/{{name}}
$ pulumi import gcp:compute/firewall:Firewall default {{name}}

Properties

Link copied to clipboard
val allows: Output<List<FirewallAllow>>?

The list of ALLOW rules specified by this firewall. Each rule specifies a protocol and port-range tuple that describes a permitted connection. Structure is documented below.

Link copied to clipboard

Creation timestamp in RFC3339 text format.

Link copied to clipboard
val denies: Output<List<FirewallDeny>>?

The list of DENY rules specified by this firewall. Each rule specifies a protocol and port-range tuple that describes a denied connection. Structure is documented below.

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

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

Link copied to clipboard

If destination ranges are specified, the firewall will apply only to traffic that has destination IP address in these ranges. These ranges must be expressed in CIDR format. IPv4 or IPv6 ranges are supported.

Link copied to clipboard
val direction: Output<String>

Direction of traffic to which this firewall applies; default is INGRESS. Note: For INGRESS traffic, one of source_ranges, source_tags or source_service_accounts is required. Possible values are: INGRESS, EGRESS.

Link copied to clipboard
val disabled: Output<Boolean>?

Denotes whether the firewall rule is disabled, i.e not applied to the network it is associated with. When set to true, the firewall rule is not enforced and the network behaves as if it did not exist. If this is unspecified, the firewall rule will be enabled.

Link copied to clipboard
val enableLogging: Output<Boolean>

This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported to Stackdriver. Deprecated in favor of log_config

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

This field denotes the logging options for a particular firewall rule. If defined, logging is enabled, and logs will be exported to Cloud Logging. Structure is documented below.

Link copied to clipboard
val name: Output<String>

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 network: Output<String>

The name or self_link of the network to attach this firewall to.

Link copied to clipboard
val priority: Output<Int>?

Priority for this rule. This is an integer between 0 and 65535, both inclusive. When not specified, the value assumed is 1000. Relative priorities determine precedence of conflicting rules. Lower value of priority implies higher precedence (eg, a rule with priority 0 has higher precedence than a rule with priority 1). DENY rules take precedence over ALLOW rules having equal priority.

Link copied to clipboard
val project: Output<String>

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 pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val selfLink: Output<String>

The URI of the created resource.

Link copied to clipboard
val sourceRanges: Output<List<String>>?

If source ranges are specified, the firewall will apply only to traffic that has source IP address in these ranges. These ranges must be expressed in CIDR format. One or both of sourceRanges and sourceTags may be set. If both properties are set, the firewall will apply to traffic that has source IP address within sourceRanges OR the source IP that belongs to a tag listed in the sourceTags property. The connection does not need to match both properties for the firewall to apply. IPv4 or IPv6 ranges are supported. For INGRESS traffic, one of source_ranges, source_tags or source_service_accounts is required.

Link copied to clipboard

If source service accounts are specified, the firewall will apply only to traffic originating from an instance with a service account in this list. Source service accounts cannot be used to control traffic to an instance's external IP address because service accounts are associated with an instance, not an IP address. sourceRanges can be set at the same time as sourceServiceAccounts. If both are set, the firewall will apply to traffic that has source IP address within sourceRanges OR the source IP belongs to an instance with service account listed in sourceServiceAccount. The connection does not need to match both properties for the firewall to apply. sourceServiceAccounts cannot be used at the same time as sourceTags or targetTags. For INGRESS traffic, one of source_ranges, source_tags or source_service_accounts is required.

Link copied to clipboard
val sourceTags: Output<List<String>>?

If source tags are specified, the firewall will apply only to traffic with source IP that belongs to a tag listed in source tags. Source tags cannot be used to control traffic to an instance's external IP address. Because tags are associated with an instance, not an IP address. One or both of sourceRanges and sourceTags may be set. If both properties are set, the firewall will apply to traffic that has source IP address within sourceRanges OR the source IP that belongs to a tag listed in the sourceTags property. The connection does not need to match both properties for the firewall to apply. For INGRESS traffic, one of source_ranges, source_tags or source_service_accounts is required.

Link copied to clipboard

A list of service accounts indicating sets of instances located in the network that may make network connections as specified in allowed[]. targetServiceAccounts cannot be used at the same time as targetTags or sourceTags. If neither targetServiceAccounts nor targetTags are specified, the firewall rule applies to all instances on the specified network.

Link copied to clipboard
val targetTags: Output<List<String>>?

A list of instance tags indicating sets of instances located in the network that may make network connections as specified in allowed[]. If no targetTags are specified, the firewall rule applies to all instances on the specified network.

Link copied to clipboard
val urn: Output<String>