oci_identity_domains_identity_proofing_provider_template

This resource provides the Identity Proofing Provider Template resource in Oracle Cloud Infrastructure Identity Domains service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/identity-domains/latest/IdentityProofingProviderTemplate

Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/identity_domains

Create an Identity Proofing Provider Configuration template.

Example Usage

resource "oci_identity_domains_identity_proofing_provider_template" "test_identity_proofing_provider_template" {
	#Required
	identity_proofing_provider_template_provider = var.identity_proofing_provider_template_identity_proofing_provider_template_provider
	idcs_endpoint = data.oci_identity_domain.test_domain.url
	schemas = ["urn:ietf:params:scim:schemas:oracle:idcs:IdentityProofingProviderTemplate"]
	service_type = var.identity_proofing_provider_template_service_type
	verification_url = var.identity_proofing_provider_template_verification_url

	#Optional
	attribute_sets = ["all"]
	attributes = ""
	authorization = var.identity_proofing_provider_template_authorization
	configuration {
		#Required
		name = var.identity_proofing_provider_template_configuration_name
		sensitivity = var.identity_proofing_provider_template_configuration_sensitivity
		type = var.identity_proofing_provider_template_configuration_type
	}
	ocid = var.identity_proofing_provider_template_ocid
	resource_type_schema_version = var.identity_proofing_provider_template_resource_type_schema_version
}

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 Identity Proofing Provider Template * update - (Defaults to 20 minutes), when updating the Identity Proofing Provider Template * delete - (Defaults to 20 minutes), when destroying the Identity Proofing Provider Template

Import

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

$ terraform import oci_identity_domains_identity_proofing_provider_template.test_identity_proofing_provider_template "idcsEndpoint/{idcsEndpoint}/identityProofingProviderTemplates/{identityProofingProviderTemplateId}"