gcp.networksecurity.FirewallEndpoint
Explore with Pulumi AI
A Firewall endpoint is a Cloud Firewall resource that enables layer 7 advanced protection capabilities, such as intrusion prevention, in your network.
To get more information about FirewallEndpoint, see:
Warning: If you are using User ADCs (Application Default Credentials) with this resource, you must specify a
billing_project_id
and setuser_project_override
to true in the provider configuration. Otherwise the ACM API will return a 403 error. Your account must have theserviceusage.services.use
permission on thebilling_project_id
you defined.
Example Usage
Network Security Firewall Endpoint Basic
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",
billingProjectId: "my-project-name",
labels: {
foo: "bar",
},
});
import pulumi
import pulumi_gcp as gcp
default = gcp.networksecurity.FirewallEndpoint("default",
name="my-firewall-endpoint",
parent="organizations/123456789",
location="us-central1-a",
billing_project_id="my-project-name",
labels={
"foo": "bar",
})
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"),
BillingProjectId: pulumi.String("my-project-name"),
Labels: pulumi.StringMap{
"foo": pulumi.String("bar"),
},
})
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 @default = new Gcp.NetworkSecurity.FirewallEndpoint("default", new()
{
Name = "my-firewall-endpoint",
Parent = "organizations/123456789",
Location = "us-central1-a",
BillingProjectId = "my-project-name",
Labels =
{
{ "foo", "bar" },
},
});
});
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 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")
.billingProjectId("my-project-name")
.labels(Map.of("foo", "bar"))
.build());
}
}
resources:
default:
type: gcp:networksecurity:FirewallEndpoint
properties:
name: my-firewall-endpoint
parent: organizations/123456789
location: us-central1-a
billingProjectId: my-project-name
labels:
foo: bar
Create FirewallEndpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FirewallEndpoint(name: string, args: FirewallEndpointArgs, opts?: CustomResourceOptions);
@overload
def FirewallEndpoint(resource_name: str,
args: FirewallEndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FirewallEndpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
billing_project_id: Optional[str] = None,
location: Optional[str] = None,
parent: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
name: Optional[str] = None)
func NewFirewallEndpoint(ctx *Context, name string, args FirewallEndpointArgs, opts ...ResourceOption) (*FirewallEndpoint, error)
public FirewallEndpoint(string name, FirewallEndpointArgs args, CustomResourceOptions? opts = null)
public FirewallEndpoint(String name, FirewallEndpointArgs args)
public FirewallEndpoint(String name, FirewallEndpointArgs args, CustomResourceOptions options)
type: gcp:networksecurity:FirewallEndpoint
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 FirewallEndpointArgs
- 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 FirewallEndpointArgs
- 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 FirewallEndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FirewallEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FirewallEndpointArgs
- 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 firewallEndpointResource = new Gcp.NetworkSecurity.FirewallEndpoint("firewallEndpointResource", new()
{
BillingProjectId = "string",
Location = "string",
Parent = "string",
Labels =
{
{ "string", "string" },
},
Name = "string",
});
example, err := networksecurity.NewFirewallEndpoint(ctx, "firewallEndpointResource", &networksecurity.FirewallEndpointArgs{
BillingProjectId: pulumi.String("string"),
Location: pulumi.String("string"),
Parent: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
})
var firewallEndpointResource = new FirewallEndpoint("firewallEndpointResource", FirewallEndpointArgs.builder()
.billingProjectId("string")
.location("string")
.parent("string")
.labels(Map.of("string", "string"))
.name("string")
.build());
firewall_endpoint_resource = gcp.networksecurity.FirewallEndpoint("firewallEndpointResource",
billing_project_id="string",
location="string",
parent="string",
labels={
"string": "string",
},
name="string")
const firewallEndpointResource = new gcp.networksecurity.FirewallEndpoint("firewallEndpointResource", {
billingProjectId: "string",
location: "string",
parent: "string",
labels: {
string: "string",
},
name: "string",
});
type: gcp:networksecurity:FirewallEndpoint
properties:
billingProjectId: string
labels:
string: string
location: string
name: string
parent: string
FirewallEndpoint 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 FirewallEndpoint resource accepts the following input properties:
- Billing
Project stringId - Project to bill on endpoint uptime usage.
- Location string
- The location (zone) of the firewall endpoint.
- Parent string
- The name of the parent this firewall endpoint belongs to.
Format: organizations/{organization_id}.
- Labels Dictionary<string, string>
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.- Name string
- The name of the firewall endpoint resource.
- Billing
Project stringId - Project to bill on endpoint uptime usage.
- Location string
- The location (zone) of the firewall endpoint.
- Parent string
- The name of the parent this firewall endpoint belongs to.
Format: organizations/{organization_id}.
- Labels map[string]string
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.- Name string
- The name of the firewall endpoint resource.
- billing
Project StringId - Project to bill on endpoint uptime usage.
- location String
- The location (zone) of the firewall endpoint.
- parent String
- The name of the parent this firewall endpoint belongs to.
Format: organizations/{organization_id}.
- labels Map<String,String>
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.- name String
- The name of the firewall endpoint resource.
- billing
Project stringId - Project to bill on endpoint uptime usage.
- location string
- The location (zone) of the firewall endpoint.
- parent string
- The name of the parent this firewall endpoint belongs to.
Format: organizations/{organization_id}.
- labels {[key: string]: string}
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.- name string
- The name of the firewall endpoint resource.
- billing_
project_ strid - Project to bill on endpoint uptime usage.
- location str
- The location (zone) of the firewall endpoint.
- parent str
- The name of the parent this firewall endpoint belongs to.
Format: organizations/{organization_id}.
- labels Mapping[str, str]
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.- name str
- The name of the firewall endpoint resource.
- billing
Project StringId - Project to bill on endpoint uptime usage.
- location String
- The location (zone) of the firewall endpoint.
- parent String
- The name of the parent this firewall endpoint belongs to.
Format: organizations/{organization_id}.
- labels Map<String>
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.- name String
- The name of the firewall endpoint resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the FirewallEndpoint resource produces the following output properties:
- Associated
Networks List<string> - List of networks that are associated with this endpoint in the local zone. This is a projection of the FirewallEndpointAssociations pointing at this endpoint. A network will only appear in this list after traffic routing is fully configured. Format: projects/{project}/global/networks/{name}.
- Create
Time string - Time the firewall endpoint was created in UTC.
- Effective
Labels Dictionary<string, string> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Id string
- The provider-assigned unique ID for this managed resource.
- Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- Reconciling bool
- Whether reconciling is in progress, recommended per https://google.aip.dev/128.
- Self
Link string - Server-defined URL of this resource.
- State string
- The current state of the endpoint.
- Update
Time string - Time the firewall endpoint was updated in UTC.
- Associated
Networks []string - List of networks that are associated with this endpoint in the local zone. This is a projection of the FirewallEndpointAssociations pointing at this endpoint. A network will only appear in this list after traffic routing is fully configured. Format: projects/{project}/global/networks/{name}.
- Create
Time string - Time the firewall endpoint was created in UTC.
- Effective
Labels map[string]string - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Id string
- The provider-assigned unique ID for this managed resource.
- Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- Reconciling bool
- Whether reconciling is in progress, recommended per https://google.aip.dev/128.
- Self
Link string - Server-defined URL of this resource.
- State string
- The current state of the endpoint.
- Update
Time string - Time the firewall endpoint was updated in UTC.
- associated
Networks List<String> - List of networks that are associated with this endpoint in the local zone. This is a projection of the FirewallEndpointAssociations pointing at this endpoint. A network will only appear in this list after traffic routing is fully configured. Format: projects/{project}/global/networks/{name}.
- create
Time String - Time the firewall endpoint was created in UTC.
- effective
Labels Map<String,String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id String
- The provider-assigned unique ID for this managed resource.
- pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling Boolean
- Whether reconciling is in progress, recommended per https://google.aip.dev/128.
- self
Link String - Server-defined URL of this resource.
- state String
- The current state of the endpoint.
- update
Time String - Time the firewall endpoint was updated in UTC.
- associated
Networks string[] - List of networks that are associated with this endpoint in the local zone. This is a projection of the FirewallEndpointAssociations pointing at this endpoint. A network will only appear in this list after traffic routing is fully configured. Format: projects/{project}/global/networks/{name}.
- create
Time string - Time the firewall endpoint was created in UTC.
- effective
Labels {[key: string]: string} - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id string
- The provider-assigned unique ID for this managed resource.
- pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling boolean
- Whether reconciling is in progress, recommended per https://google.aip.dev/128.
- self
Link string - Server-defined URL of this resource.
- state string
- The current state of the endpoint.
- update
Time string - Time the firewall endpoint was updated in UTC.
- associated_
networks Sequence[str] - List of networks that are associated with this endpoint in the local zone. This is a projection of the FirewallEndpointAssociations pointing at this endpoint. A network will only appear in this list after traffic routing is fully configured. Format: projects/{project}/global/networks/{name}.
- create_
time str - Time the firewall endpoint was created in UTC.
- effective_
labels Mapping[str, str] - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id str
- The provider-assigned unique ID for this managed resource.
- pulumi_
labels Mapping[str, str] - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling bool
- Whether reconciling is in progress, recommended per https://google.aip.dev/128.
- self_
link str - Server-defined URL of this resource.
- state str
- The current state of the endpoint.
- update_
time str - Time the firewall endpoint was updated in UTC.
- associated
Networks List<String> - List of networks that are associated with this endpoint in the local zone. This is a projection of the FirewallEndpointAssociations pointing at this endpoint. A network will only appear in this list after traffic routing is fully configured. Format: projects/{project}/global/networks/{name}.
- create
Time String - Time the firewall endpoint was created in UTC.
- effective
Labels Map<String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id String
- The provider-assigned unique ID for this managed resource.
- pulumi
Labels Map<String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling Boolean
- Whether reconciling is in progress, recommended per https://google.aip.dev/128.
- self
Link String - Server-defined URL of this resource.
- state String
- The current state of the endpoint.
- update
Time String - Time the firewall endpoint was updated in UTC.
Look up Existing FirewallEndpoint Resource
Get an existing FirewallEndpoint 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?: FirewallEndpointState, opts?: CustomResourceOptions): FirewallEndpoint
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
associated_networks: Optional[Sequence[str]] = None,
billing_project_id: Optional[str] = None,
create_time: Optional[str] = None,
effective_labels: Optional[Mapping[str, str]] = None,
labels: Optional[Mapping[str, str]] = None,
location: Optional[str] = None,
name: Optional[str] = None,
parent: Optional[str] = None,
pulumi_labels: Optional[Mapping[str, str]] = None,
reconciling: Optional[bool] = None,
self_link: Optional[str] = None,
state: Optional[str] = None,
update_time: Optional[str] = None) -> FirewallEndpoint
func GetFirewallEndpoint(ctx *Context, name string, id IDInput, state *FirewallEndpointState, opts ...ResourceOption) (*FirewallEndpoint, error)
public static FirewallEndpoint Get(string name, Input<string> id, FirewallEndpointState? state, CustomResourceOptions? opts = null)
public static FirewallEndpoint get(String name, Output<String> id, FirewallEndpointState 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.
- Associated
Networks List<string> - List of networks that are associated with this endpoint in the local zone. This is a projection of the FirewallEndpointAssociations pointing at this endpoint. A network will only appear in this list after traffic routing is fully configured. Format: projects/{project}/global/networks/{name}.
- Billing
Project stringId - Project to bill on endpoint uptime usage.
- Create
Time string - Time the firewall endpoint was created in UTC.
- Effective
Labels Dictionary<string, string> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Labels Dictionary<string, string>
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.- Location string
- The location (zone) of the firewall endpoint.
- Name string
- The name of the firewall endpoint resource.
- Parent string
- The name of the parent this firewall endpoint belongs to.
Format: organizations/{organization_id}.
- Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- Reconciling bool
- Whether reconciling is in progress, recommended per https://google.aip.dev/128.
- Self
Link string - Server-defined URL of this resource.
- State string
- The current state of the endpoint.
- Update
Time string - Time the firewall endpoint was updated in UTC.
- Associated
Networks []string - List of networks that are associated with this endpoint in the local zone. This is a projection of the FirewallEndpointAssociations pointing at this endpoint. A network will only appear in this list after traffic routing is fully configured. Format: projects/{project}/global/networks/{name}.
- Billing
Project stringId - Project to bill on endpoint uptime usage.
- Create
Time string - Time the firewall endpoint was created in UTC.
- Effective
Labels map[string]string - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Labels map[string]string
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.- Location string
- The location (zone) of the firewall endpoint.
- Name string
- The name of the firewall endpoint resource.
- Parent string
- The name of the parent this firewall endpoint belongs to.
Format: organizations/{organization_id}.
- Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- Reconciling bool
- Whether reconciling is in progress, recommended per https://google.aip.dev/128.
- Self
Link string - Server-defined URL of this resource.
- State string
- The current state of the endpoint.
- Update
Time string - Time the firewall endpoint was updated in UTC.
- associated
Networks List<String> - List of networks that are associated with this endpoint in the local zone. This is a projection of the FirewallEndpointAssociations pointing at this endpoint. A network will only appear in this list after traffic routing is fully configured. Format: projects/{project}/global/networks/{name}.
- billing
Project StringId - Project to bill on endpoint uptime usage.
- create
Time String - Time the firewall endpoint was created in UTC.
- effective
Labels Map<String,String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels Map<String,String>
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.- location String
- The location (zone) of the firewall endpoint.
- name String
- The name of the firewall endpoint resource.
- parent String
- The name of the parent this firewall endpoint belongs to.
Format: organizations/{organization_id}.
- pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling Boolean
- Whether reconciling is in progress, recommended per https://google.aip.dev/128.
- self
Link String - Server-defined URL of this resource.
- state String
- The current state of the endpoint.
- update
Time String - Time the firewall endpoint was updated in UTC.
- associated
Networks string[] - List of networks that are associated with this endpoint in the local zone. This is a projection of the FirewallEndpointAssociations pointing at this endpoint. A network will only appear in this list after traffic routing is fully configured. Format: projects/{project}/global/networks/{name}.
- billing
Project stringId - Project to bill on endpoint uptime usage.
- create
Time string - Time the firewall endpoint was created in UTC.
- effective
Labels {[key: string]: string} - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels {[key: string]: string}
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.- location string
- The location (zone) of the firewall endpoint.
- name string
- The name of the firewall endpoint resource.
- parent string
- The name of the parent this firewall endpoint belongs to.
Format: organizations/{organization_id}.
- pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling boolean
- Whether reconciling is in progress, recommended per https://google.aip.dev/128.
- self
Link string - Server-defined URL of this resource.
- state string
- The current state of the endpoint.
- update
Time string - Time the firewall endpoint was updated in UTC.
- associated_
networks Sequence[str] - List of networks that are associated with this endpoint in the local zone. This is a projection of the FirewallEndpointAssociations pointing at this endpoint. A network will only appear in this list after traffic routing is fully configured. Format: projects/{project}/global/networks/{name}.
- billing_
project_ strid - Project to bill on endpoint uptime usage.
- create_
time str - Time the firewall endpoint was created in UTC.
- effective_
labels Mapping[str, str] - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels Mapping[str, str]
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.- location str
- The location (zone) of the firewall endpoint.
- name str
- The name of the firewall endpoint resource.
- parent str
- The name of the parent this firewall endpoint belongs to.
Format: organizations/{organization_id}.
- pulumi_
labels Mapping[str, str] - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling bool
- Whether reconciling is in progress, recommended per https://google.aip.dev/128.
- self_
link str - Server-defined URL of this resource.
- state str
- The current state of the endpoint.
- update_
time str - Time the firewall endpoint was updated in UTC.
- associated
Networks List<String> - List of networks that are associated with this endpoint in the local zone. This is a projection of the FirewallEndpointAssociations pointing at this endpoint. A network will only appear in this list after traffic routing is fully configured. Format: projects/{project}/global/networks/{name}.
- billing
Project StringId - Project to bill on endpoint uptime usage.
- create
Time String - Time the firewall endpoint was created in UTC.
- effective
Labels Map<String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels Map<String>
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.- location String
- The location (zone) of the firewall endpoint.
- name String
- The name of the firewall endpoint resource.
- parent String
- The name of the parent this firewall endpoint belongs to.
Format: organizations/{organization_id}.
- pulumi
Labels Map<String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling Boolean
- Whether reconciling is in progress, recommended per https://google.aip.dev/128.
- self
Link String - Server-defined URL of this resource.
- state String
- The current state of the endpoint.
- update
Time String - Time the firewall endpoint was updated in UTC.
Import
FirewallEndpoint can be imported using any of these accepted formats:
{{parent}}/locations/{{location}}/firewallEndpoints/{{name}}
When using the pulumi import
command, FirewallEndpoint can be imported using one of the formats above. For example:
$ pulumi import gcp:networksecurity/firewallEndpoint:FirewallEndpoint default {{parent}}/locations/{{location}}/firewallEndpoints/{{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.