Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for PingOne Forms #262

Open
samir-gandhi opened this issue Jan 30, 2024 · 0 comments
Open

Support for PingOne Forms #262

samir-gandhi opened this issue Jan 30, 2024 · 0 comments
Labels
status/needs-triage The issue/PR needs initial triage type/enhancement New feature or request

Comments

@samir-gandhi
Copy link
Contributor

Community Note

  • Please vote on this issue by adding a 馃憤 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

PingOne Forms in a DaVinci flow uses a name mapped to a form Id in PingOne. On a DaVinci Flow json, this looks like:

      "nodes": [
        {
          "data": {
            "id": "yyk9da0zs9",
            "nodeType": "CONNECTION",
            "connectionId": "8209285e0d2f3fc76bfd23fd10d45e6f",
            "connectorId": "pingOneFormsConnector",
            "name": "PingOne Forms",
            "label": "PingOne Forms",
            "status": "configured",
            "capabilityName": "customForm",
            "type": "action",
            "properties": {
              "formData": {
                "value": [
                  {
                    "key": "user.username",
                    "value": ""
                  },
                  {
                    "key": "user.email",
                    "value": ""
                  },
                  {
                    "key": "user.password",
                    "value": ""
                  }
                ]
              },
              "form": {
                "value": "aaaaaaaa-aaaaa-44444-444444-aaaaaaaaaaaaa"
              }
            }
          },

This likely needs a new block similar to subflow_link

New or Affected Resource(s)

  • davinci_flow

Potential Terraform Configuration

resource "davinci_flow" "mainflow" {
  environment_id = var.environment_id
  flow_json      = ""
  deploy         = true

  subflow_link {
    id   = resource.davinci_flow.subflow.id
    name = resource.davinci_flow.subflow.name
  }

  form_link {
    id   = resource.pingone_form.my_awesome_form.id
    name = resource.pingone_form.my_awesome_form.name
  }
}

References

@samir-gandhi samir-gandhi added type/enhancement New feature or request status/needs-triage The issue/PR needs initial triage labels Jan 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status/needs-triage The issue/PR needs initial triage type/enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant