Skip to content

googleComputeFirewallPolicy

Hierarchical firewall policy rules let you create and enforce a consistent firewall policy across your organization. Rules can explicitly allow or deny connections or delegate evaluation to lower level policies. Policies can be created within organizations or folders.

This resource should be generally be used with googleComputeFirewallPolicyAssociation and googleComputeFirewallPolicyRule

For more information see the official documentation

Example Usage

/*Provider bindings are generated by running cdktf get.
See https://cdk.tf/provider-generation for more details.*/
import * as google from "./.gen/providers/google";
/*The following providers are missing schema information and might need manual adjustments to synthesize correctly: google.
For a more precise conversion please use the --provider flag in convert.*/
new google.computeFirewallPolicy.ComputeFirewallPolicy(this, "default", {
  description: "Example Resource",
  parent: "organizations/12345",
  short_name: "my-policy",
});

Argument Reference

The following arguments are supported:

  • parent - (Required) The parent of the firewall policy.

  • shortName - (Required) User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy 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.


  • description - (Optional) An optional description of this resource. Provide this property when you create the resource.

Attributes Reference

In addition to the arguments listed above, the following computed attributes are exported:

  • id - an identifier for the resource with format locations/global/firewallPolicies/{{name}}

  • creationTimestamp - Creation timestamp in RFC3339 text format.

  • fingerprint - Fingerprint of the resource. This field is used internally during updates of this resource.

  • id - The unique identifier for the resource. This identifier is defined by the server.

  • name - Name of the resource. It is a numeric ID allocated by GCP which uniquely identifies the Firewall Policy.

  • ruleTupleCount - Total count of all firewall policy rule tuples. A firewall policy can not exceed a set number of tuples.

  • selfLink - Server-defined URL for the resource.

  • selfLinkWithId - Server-defined URL for this resource with the resource id.

Timeouts

This resource provides the following Timeouts configuration options: configuration options:

  • create - Default is 20 minutes.
  • update - Default is 20 minutes.
  • delete - Default is 20 minutes.

Import

FirewallPolicy can be imported using any of these accepted formats:

$ terraform import google_compute_firewall_policy.default locations/global/firewallPolicies/{{name}}
$ terraform import google_compute_firewall_policy.default {{name}}