oci_waas_address_list

This resource provides the Address List resource in Oracle Cloud Infrastructure Web Application Acceleration and Security service.

Creates an address list in a set compartment and allows it to be used in a WAAS policy and referenced by access rules. Addresses can be IP addresses and CIDR notations.

Example Usage

resource "oci_waas_address_list" "test_address_list" {
	#Required
	addresses = var.address_list_addresses
	compartment_id = var.compartment_id
	display_name = var.address_list_display_name

	#Optional
	defined_tags = {"Operations.CostCenter"= "42"}
	freeform_tags = {"Department"= "Finance"}
}

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

Import

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

$ terraform import oci_waas_address_list.test_address_list "id"