The opc_compute_ip_address_prefix_set resource creates and manages an IP address prefix set in an Oracle Cloud Infrastructure Compute Classic identity domain.
resource "opc_compute_ip_address_prefix_set" "default" {
name = "PrefixSet1"
prefixes = ["192.168.0.0/16", "172.120.0.0/24"]
tags = ["tags1", "tags2"]
}
The following arguments are supported:
name - (Required) The name of the ip address prefix set.
prefixes - (Optional) List of CIDR IPv4 prefixes assigned in the virtual network.
description - (Optional) A description of the ip address prefix set.
tags - (Optional) List of tags that may be applied to the ip address prefix set.
In addition to the above, the following variables are exported:
uri - (Computed) The Uniform Resource Identifier of the ip address prefix set. IP Address Prefix Set can be imported using the resource name, e.g.
$ terraform import opc_compute_ip_address_prefix_set.default example
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/opc/r/opc_compute_ip_address_prefix_set.html