Skip to content

Commit

Permalink
Update Connector Schema (24-Feb-2025) (#436)
Browse files Browse the repository at this point in the history
* Update connector schema

* Update generated documentation/code

* Update changelog

---------

Co-authored-by: github-actions[bot] <action@github.com>
  • Loading branch information
github-actions[bot] and actions-user authored Feb 24, 2025
1 parent 4b4925c commit bb80a62
Show file tree
Hide file tree
Showing 6 changed files with 425 additions and 20 deletions.
3 changes: 3 additions & 0 deletions .changelog/436.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:note
Update Connector Reference Guide (24 February 2025).
```
7 changes: 7 additions & 0 deletions docs/guides/connector-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -5375,6 +5375,7 @@ Properties (used in the `property` block in the resource as the `name` parameter
* `clientId` (string): The Client ID of your PingOne Worker application. Console display name: "Client ID".
* `clientSecret` (string): The Client Secret of your PingOne Worker application. Console display name: "Client Secret".
* `envId` (string): Your PingOne environment ID. Console display name: "Environment ID".
* `envRegionInfo` (string): If you want to connect with a different PingOne environment, enter the environment and credential information below. Console display name: "The default PingOne environment is configured automatically.".
* `region` (string): The region in which your PingOne environment exists. Console display name: "Region".


Expand Down Expand Up @@ -5404,6 +5405,12 @@ resource "davinci_connection" "pingOneSSOConnector" {
value = var.pingone_worker_app_environment_id
}
property {
name = "envRegionInfo"
type = "string"
value = var.pingonessoconnector_property_env_region_info
}
property {
name = "region"
type = "string"
Expand Down
9 changes: 7 additions & 2 deletions dvgenerate/internal/connector_schema/connector-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4587,8 +4587,8 @@
"connectorId": "microsoftIdpConnector",
"connectorCategories": [
{
"name": "Authenticate",
"value": "authenticate"
"name": "Identity Provider (IDP)",
"value": "idp"
}
],
"properties": {
Expand Down Expand Up @@ -5472,6 +5472,11 @@
"preferredControlType": "textField",
"info": "Your PingOne environment ID."
},
"envRegionInfo": {
"displayName": "The default PingOne environment is configured automatically.",
"preferredControlType": "label",
"info": "If you want to connect with a different PingOne environment, enter the environment and credential information below."
},
"region": {
"type": "string",
"displayName": "Region",
Expand Down
6 changes: 6 additions & 0 deletions examples/connectors/pingOneSSOConnector.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ resource "davinci_connection" "pingOneSSOConnector" {
value = var.pingone_worker_app_environment_id
}

property {
name = "envRegionInfo"
type = "string"
value = var.pingonessoconnector_property_env_region_info
}

property {
name = "region"
type = "string"
Expand Down
Loading

0 comments on commit bb80a62

Please sign in to comment.