Skip to content
This repository was archived by the owner on Apr 15, 2026. It is now read-only.

Commit 44947fc

Browse files
authored
Merge pull request #61 from patrickcping/update-example-202506
Update example in the /examples directory with latest implementation
2 parents b3e181a + 8f4143c commit 44947fc

3 files changed

Lines changed: 18 additions & 0 deletions

File tree

example/output/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ module "davinci_flows" {
6161
# davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_clientId = null
6262
# davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_clientSecret = null
6363
# davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_envId = null
64+
# davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_envRegionInfo = null
6465
# davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_region = null
6566
6667
#######################################
@@ -302,6 +303,7 @@ The variables and their default values have been generated from the provided DaV
302303
| `davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_clientId` | The `Client ID` property for the connector named `PingOne` with connector ID `pingOneSSOConnector`. The Client ID of your PingOne Worker application. | string | *No default value* |
303304
| `davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_clientSecret` | The `Client Secret` property for the connector named `PingOne` with connector ID `pingOneSSOConnector`. The Client Secret of your PingOne Worker application. | string | *No default value* |
304305
| `davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_envId` | The `Environment ID` property for the connector named `PingOne` with connector ID `pingOneSSOConnector`. Your PingOne environment ID. | string | *No default value* |
306+
| `davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_envRegionInfo` | The `The default PingOne environment is configured automatically.` property for the connector named `PingOne` with connector ID `pingOneSSOConnector`. If you want to connect with a different PingOne environment, enter the environment and credential information below. | string | *No default value* |
305307
| `davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_region` | The `Region` property for the connector named `PingOne` with connector ID `pingOneSSOConnector`. The region in which your PingOne environment exists. | string | *No default value* |
306308

307309
### Terraform variables for davinci_variable resources

example/output/davinci_connection_property_vars.tf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,16 @@ EOT
290290
default = null
291291
}
292292

293+
// The 'The default PingOne environment is configured automatically.' property for the connector named 'PingOne' with connector ID 'pingOneSSOConnector'. If you want to connect with a different PingOne environment, enter the environment and credential information below.
294+
variable "davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_envRegionInfo" {
295+
type = string
296+
297+
description = <<EOT
298+
The 'The default PingOne environment is configured automatically.' property for the connector named 'PingOne' with connector ID 'pingOneSSOConnector'. If you want to connect with a different PingOne environment, enter the environment and credential information below.
299+
EOT
300+
default = null
301+
}
302+
293303
// The 'Region' property for the connector named 'PingOne' with connector ID 'pingOneSSOConnector'. The region in which your PingOne environment exists.
294304
variable "davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_region" {
295305
type = string

example/output/davinci_connectors.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,12 @@ resource "davinci_connection" "pingonessoconnector__94141bf2f1b9b59a5f5365ff135e
355355
type = "string"
356356
value = tostring(var.davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_envId)
357357
}] : [],
358+
// The default PingOne environment is configured automatically.
359+
var.davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_envRegionInfo != null ? [{
360+
name = "envRegionInfo"
361+
type = "string"
362+
value = tostring(var.davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_envRegionInfo)
363+
}] : [],
358364
// Region
359365
var.davinci_connection_pingonessoconnector__94141bf2f1b9b59a5f5365ff135e02bb_region != null ? [{
360366
name = "region"

0 commit comments

Comments
 (0)