iwarapter / terraform-provider-pingfederate

Ping Federate Terraform Provider
https://registry.terraform.io/providers/iwarapter/pingfederate/latest/docs
MIT License
17 stars 7 forks source link

pingfederate_oauth_access_token_manager plugin_descriptor_ref for JWT Bearer Token #267

Closed Vasista-Eranki closed 1 year ago

Vasista-Eranki commented 1 year ago

Hi

I'm trying to provision an OAuth Access Token Manager in PingFederate. The Plugin descriptor ref. id is set as: "com.pingidentity.pf.access.token.management.plugins.JwtBearerAccessTokenManagementPlugin".

image

However, this value is not accepted due to string length limits; image

│ Error: unable to create OauthAccessTokenManagers: Validation error(s) occurred. Please review the error(s) and address accordingly.
│ The plugin ID must be less than 33 characters, contain no spaces, and be alphanumeric.
│
│   with pingfederate_oauth_access_token_manager.oauth_access_token_mgr,
│   on main.tf line 49, in resource "pingfederate_oauth_access_token_manager" "oauth_access_token_mgr":
│   49: resource "pingfederate_oauth_access_token_manager" "oauth_access_token_mgr" {

Can you please suggest a way to proceed with this.

iwarapter commented 1 year ago

its the _ in the name, its not alphanumeric

Vasista-Eranki commented 1 year ago

its the _ in the name, its not alphanumeric

it worked. Thank you..