oci_identity_domains_cloud_gate_server

This resource provides the Cloud Gate Server resource in Oracle Cloud Infrastructure Identity Domains service.

Create a Cloud Gate server

Example Usage

resource "oci_identity_domains_cloud_gate_server" "test_cloud_gate_server" {
	#Required
	cloud_gate {
		#Required
		value = var.cloud_gate_server_cloud_gate_value
	}
	display_name = var.cloud_gate_server_display_name
	host_name = var.cloud_gate_server_host_name
	idcs_endpoint = data.oci_identity_domain.test_domain.url
	port = var.cloud_gate_server_port
	schemas = ["urn:ietf:params:scim:schemas:oracle:idcs:CloudGateServer"]
	ssl = var.cloud_gate_server_ssl

	#Optional
	attribute_sets = ["all"]
	attributes = ""
	authorization = var.cloud_gate_server_authorization
	description = var.cloud_gate_server_description
	id = var.cloud_gate_server_id
	nginx_settings = var.cloud_gate_server_nginx_settings
	ocid = var.cloud_gate_server_ocid
	resource_type_schema_version = var.cloud_gate_server_resource_type_schema_version
	tags {
		#Required
		key = var.cloud_gate_server_tags_key
		value = var.cloud_gate_server_tags_value
	}
}

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

Import

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

$ terraform import oci_identity_domains_cloud_gate_server.test_cloud_gate_server "idcsEndpoint/{idcsEndpoint}/cloudGateServers/{cloudGateServerId}"