oci_network_firewall_network_firewall_policy_url_list

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

Creates a new Url List for the Network Firewall Policy.

Example Usage

resource "oci_network_firewall_network_firewall_policy_url_list" "test_network_firewall_policy_url_list" {
	#Required
	name = var.network_firewall_policy_url_list_name
	network_firewall_policy_id = oci_network_firewall_network_firewall_policy.test_network_firewall_policy.id
	urls {
		#Required
		pattern = var.network_firewall_policy_url_list_urls_pattern
		type = var.network_firewall_policy_url_list_urls_type
	}
}

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 Url List * update - (Defaults to 20 minutes), when updating the Network Firewall Policy Url List * delete - (Defaults to 20 minutes), when destroying the Network Firewall Policy Url List

Import

NetworkFirewallPolicyUrlLists can be imported using the id, e.g.

$ terraform import oci_network_firewall_network_firewall_policy_url_list.test_network_firewall_policy_url_list "networkFirewallPolicies/{networkFirewallPolicyId}/urlLists/{urlListName}"