Skip to content

Commit

Permalink
Update connector reference guide (October 2024) (#377)
Browse files Browse the repository at this point in the history
* Update connector reference guide

* changelog
  • Loading branch information
patrickcping authored Oct 21, 2024
1 parent 2270d35 commit 3128e4f
Show file tree
Hide file tree
Showing 5 changed files with 82 additions and 35 deletions.
3 changes: 3 additions & 0 deletions .changelog/377.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:note
Update Connector Reference Guide (October 2024).
```
58 changes: 40 additions & 18 deletions docs/guides/connector-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -4273,24 +4273,6 @@ resource "davinci_connection" "locationPolicyConnector" {
```


## MFA Container

Connector ID (`connector_id` in the resource): `mfaContainerConnector`

*No properties*


Example:
```terraform
resource "davinci_connection" "mfaContainerConnector" {
environment_id = var.pingone_environment_id
connector_id = "mfaContainerConnector"
name = "My awesome mfaContainerConnector"
}
```


## Mailchimp

Connector ID (`connector_id` in the resource): `connectorMailchimp`
Expand Down Expand Up @@ -9289,6 +9271,46 @@ resource "davinci_connection" "connectorIPStack" {
```


## mParticle

Connector ID (`connector_id` in the resource): `mparticleConnector`

Properties (used in the `property` block in the resource as the `name` parameter):

* `clientID` (string): Client ID from mParticle tenant. Console display name: "Client ID".
* `clientSecret` (string): Client Secret from mParticle tenant. Console display name: "Client Secret".
* `pod` (string): Pod from mParticle tenant. Only required for 'Upload an event batch' capability. Console display name: "Pod".


Example:
```terraform
resource "davinci_connection" "mparticleConnector" {
environment_id = var.pingone_environment_id
connector_id = "mparticleConnector"
name = "My awesome mparticleConnector"
property {
name = "clientID"
type = "string"
value = var.mparticleconnector_property_client_i_d
}
property {
name = "clientSecret"
type = "string"
value = var.mparticleconnector_property_client_secret
}
property {
name = "pod"
type = "string"
value = var.mparticleconnector_property_pod
}
}
```


## neoEYED

Connector ID (`connector_id` in the resource): `neoeyedConnector`
Expand Down
6 changes: 0 additions & 6 deletions examples/connectors/mfaContainerConnector.tf

This file was deleted.

24 changes: 24 additions & 0 deletions examples/connectors/mparticleConnector.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
resource "davinci_connection" "mparticleConnector" {
environment_id = var.pingone_environment_id

connector_id = "mparticleConnector"
name = "My awesome mparticleConnector"

property {
name = "clientID"
type = "string"
value = var.mparticleconnector_property_client_i_d
}

property {
name = "clientSecret"
type = "string"
value = var.mparticleconnector_property_client_secret
}

property {
name = "pod"
type = "string"
value = var.mparticleconnector_property_pod
}
}
26 changes: 15 additions & 11 deletions templates/guides/connector-reference.md.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -1550,17 +1550,6 @@ Example:
{{ tffile (printf "%s" "examples/connectors/locationPolicyConnector.tf") }}


## MFA Container

Connector ID (`connector_id` in the resource): `mfaContainerConnector`

*No properties*


Example:
{{ tffile (printf "%s" "examples/connectors/mfaContainerConnector.tf") }}


## Mailchimp

Connector ID (`connector_id` in the resource): `connectorMailchimp`
Expand Down Expand Up @@ -3223,6 +3212,21 @@ Example:
{{ tffile (printf "%s" "examples/connectors/connectorIPStack.tf") }}


## mParticle

Connector ID (`connector_id` in the resource): `mparticleConnector`

Properties (used in the `property` block in the resource as the `name` parameter):

* `clientID` (string): Client ID from mParticle tenant. Console display name: "Client ID".
* `clientSecret` (string): Client Secret from mParticle tenant. Console display name: "Client Secret".
* `pod` (string): Pod from mParticle tenant. Only required for 'Upload an event batch' capability. Console display name: "Pod".


Example:
{{ tffile (printf "%s" "examples/connectors/mparticleConnector.tf") }}


## neoEYED

Connector ID (`connector_id` in the resource): `neoeyedConnector`
Expand Down

0 comments on commit 3128e4f

Please sign in to comment.