This data source provides the list of Service Gateways in Oracle Cloud Infrastructure Core service.
Lists the service gateways in the specified compartment. You may optionally specify a VCN OCID to filter the results by VCN.
data "oci_core_service_gateways" "test_service_gateways" {
#Required
compartment_id = var.compartment_id
#Optional
state = var.service_gateway_state
vcn_id = oci_core_vcn.test_vcn.id
}
The following arguments are supported:
compartment_id
- (Required) The OCID of the compartment.state
- (Optional) A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. vcn_id
- (Optional) The OCID of the VCN.The following attributes are exported:
service_gateways
- The list of service_gateways.The following attributes are exported:
block_traffic
- Whether the service gateway blocks all traffic through it. The default is false
. When this is true
, traffic is not routed to any services, regardless of route rules. Example: true
compartment_id
- The OCID of the compartment that contains the service gateway. defined_tags
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
display_name
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. freeform_tags
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
id
- The OCID of the service gateway. route_table_id
- The OCID of the route table the service gateway is using. For information about why you would associate a route table with a service gateway, see Transit Routing: Private Access to Oracle Services. services
- List of the Service objects enabled for this service gateway. The list can be empty. You can enable a particular Service
by using AttachServiceId or UpdateServiceGateway.
service_id
- The OCID of the service. service_name
- The name of the service.state
- The service gateway's current state.time_created
- The date and time the service gateway was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
vcn_id
- The OCID of the VCN the service gateway belongs to.