oci_network_firewall_network_firewall_policy_application

This resource provides the Network Firewall Policy Application resource in Oracle Cloud Infrastructure Network Firewall service.

Creates a new Application inside the Network Firewall Policy.

Example Usage

resource "oci_network_firewall_network_firewall_policy_application" "test_network_firewall_policy_application" {
    #Required
    icmp_type = var.network_firewall_policy_application_icmp_type
    name = var.network_firewall_policy_application_name
    network_firewall_policy_id = oci_network_firewall_network_firewall_policy.test_network_firewall_policy.id
    type = var.network_firewall_policy_application_type

    #Optional
    icmp_code = var.network_firewall_policy_application_icmp_code
}

Argument Reference

The following arguments are supported:

* IMPORTANT * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Attributes Reference

The following attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain operations: * create - (Defaults to 20 minutes), when creating the Network Firewall Policy Application * update - (Defaults to 20 minutes), when updating the Network Firewall Policy Application * delete - (Defaults to 20 minutes), when destroying the Network Firewall Policy Application

Import

NetworkFirewallPolicyApplications can be imported using the name, e.g.

$ terraform import oci_network_firewall_network_firewall_policy_application.test_network_firewall_policy_application "networkFirewallPolicies/{networkFirewallPolicyId}/applications/{applicationName}"