pingidentity / terraform-provider-pingone

Terraform PingOne provider
https://registry.terraform.io/providers/pingidentity/pingone/
Mozilla Public License 2.0
13 stars 6 forks source link

Add `verifyAamva` boolean property to `pingone_verify_policy` resource and data source. #926

Open mjspi opened 3 weeks ago

mjspi commented 3 weeks ago

Community Note

Description

Enable the configuration of AAMVA DLDV verification support in the PingOne Verify policy. The environment must be licensed for AAMVA verification.

New or Affected Resource(s)

Potential Terraform Configuration

# Copy-paste your PingOne related Terraform configurations here - for large Terraform configs,
# please use a service like Dropbox and share a link to the ZIP file. For
# security, you can also encrypt the files using our GPG public key.

# Remember to replace any account/customer sensitive information in the configuration before submitting the issue
resource "pingone_verify_policy" "my_verify_policy" {
    #...other configuration parameters

    government_id = {
      verify          = "REQUIRED"
      provider_auto   = "VERIFF"
      fail_expired_id = true
      retry_attempts  = "2"

      verify_aamva = true # new property
  }
}

References