oci_identity_domains_my_support_account

This resource provides the My Support Account resource in Oracle Cloud Infrastructure Identity Domains service.

Create a user’s own support account.

Example Usage

resource "oci_identity_domains_my_support_account" "test_my_support_account" {
	#Required
	idcs_endpoint = data.oci_identity_domain.test_domain.url
	schemas = ["urn:ietf:params:scim:schemas:oracle:idcs:supportAccount"]
	token = var.my_support_account_token

	#Optional
	authorization = var.my_support_account_authorization
	id = var.my_support_account_id
	ocid = var.my_support_account_ocid
	resource_type_schema_version = var.my_support_account_resource_type_schema_version
	tags {
		#Required
		key = var.my_support_account_tags_key
		value = var.my_support_account_tags_value
	}
	user {

		#Optional
		ocid = var.my_support_account_user_ocid
		value = var.my_support_account_user_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 My Support Account * update - (Defaults to 20 minutes), when updating the My Support Account * delete - (Defaults to 20 minutes), when destroying the My Support Account

Import

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

$ terraform import oci_identity_domains_my_support_account.test_my_support_account "idcsEndpoint/{idcsEndpoint}/mySupportAccounts/{mySupportAccountId}"