terraform/website/source/docs/providers/oracleopc/r/opc_compute_security_list.h...

1.1 KiB

layout page_title sidebar_current description
oracle Oracle: opc_compute_security_list docs-opc-resource-security-list Creates and manages a security list in an OPC identity domain.

opc_compute_ip_reservation

The opc_compute_security_list resource creates and manages a security list in an OPC identity domain.

Example Usage

resource "opc_compute_security_list" "sec_list1" {
       	name = "sec-list-1"
        policy = "permit"
        outbound_cidr_policy = "deny"
}

Argument Reference

The following arguments are supported:

  • name - (Required) The unique (within the identity domain) name of the security list.

  • policy - (Required) The policy to apply to instances associated with this list. Must be one of permit, reject (packets are dropped but a reply is sent) and deny (packets are dropped and no reply is sent).

  • output_cidr_policy - (Required) The policy for outbound traffic from the security list.Must be one of permit, reject (packets are dropped but a reply is sent) and deny (packets are dropped and no reply is sent).