├── .github ├── actions │ └── ci │ │ ├── build │ │ └── action.yml │ │ ├── leaks │ │ ├── action.yml │ │ └── gitleaks.toml │ │ ├── lint │ │ ├── action.yml │ │ └── golangci.yml │ │ └── setup │ │ └── action.yml ├── images │ └── descope-logo.png ├── pull_request_template.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .goreleaser.yml ├── .prettierignore ├── LICENSE ├── Makefile ├── README.md ├── docs ├── index.md ├── raw │ └── project │ │ ├── applications │ │ ├── applications.md │ │ ├── oidc.md │ │ └── saml.md │ │ ├── attributes │ │ ├── attributes.md │ │ ├── tenant.md │ │ └── user.md │ │ ├── authentication │ │ ├── authentication.md │ │ ├── embeddedlink.md │ │ ├── enchantedlink.md │ │ ├── magiclink.md │ │ ├── oauth.md │ │ ├── otp.md │ │ ├── passkeys.md │ │ ├── password.md │ │ ├── sso.md │ │ └── totp.md │ │ ├── authorization │ │ ├── authorization.md │ │ ├── permission.md │ │ └── role.md │ │ ├── connectors │ │ ├── connectors.md │ │ ├── sendgrid.md │ │ ├── ses.md │ │ ├── shared.md │ │ ├── smtp.md │ │ ├── sns.md │ │ ├── twiliocore.md │ │ └── twilioverify.md │ │ ├── flows │ │ ├── flow.md │ │ └── styles.md │ │ ├── jwttemplates │ │ ├── jwttemplate.md │ │ └── jwttemplates.md │ │ ├── project.md │ │ ├── settings │ │ ├── invite.md │ │ ├── migration.md │ │ └── settings.md │ │ ├── templates │ │ ├── emailservice.md │ │ ├── emailtemplate.md │ │ ├── textservice.md │ │ ├── texttemplate.md │ │ ├── voiceservice.md │ │ └── voicetemplate.md │ │ └── widgets │ │ └── widget.md └── resources │ └── project.md ├── go.mod ├── go.sum ├── internal ├── README.md ├── docs │ ├── docs.go │ └── models.go ├── entities │ ├── entities.go │ └── project.go ├── infra │ ├── client.go │ ├── debug.go │ └── errors.go ├── models │ ├── README.md │ ├── attrs │ │ ├── README.md │ │ ├── boolattr │ │ │ └── bool.go │ │ ├── durationattr │ │ │ ├── duration.go │ │ │ └── validators.go │ │ ├── floatattr │ │ │ └── float.go │ │ ├── intattr │ │ │ └── int.go │ │ ├── listattr │ │ │ ├── list.go │ │ │ └── match.go │ │ ├── mapattr │ │ │ └── map.go │ │ ├── objattr │ │ │ ├── modifiers.go │ │ │ ├── object.go │ │ │ └── validators.go │ │ ├── setattr │ │ │ └── set.go │ │ ├── stringattr │ │ │ ├── defaults.go │ │ │ ├── string.go │ │ │ └── validators.go │ │ ├── strings.go │ │ ├── strlistattr │ │ │ └── strlist.go │ │ ├── strmapattr │ │ │ └── strmap.go │ │ ├── strsetattr │ │ │ ├── strset.go │ │ │ └── validators.go │ │ └── types │ │ │ ├── README.md │ │ │ ├── listtype │ │ │ ├── type.go │ │ │ └── value.go │ │ │ ├── maptype │ │ │ ├── type.go │ │ │ └── value.go │ │ │ ├── objtype │ │ │ ├── attrs.go │ │ │ ├── type.go │ │ │ └── value.go │ │ │ ├── settype │ │ │ ├── type.go │ │ │ └── value.go │ │ │ ├── valuelisttype │ │ │ ├── type.go │ │ │ └── value.go │ │ │ ├── valuemaptype │ │ │ ├── type.go │ │ │ └── value.go │ │ │ └── valuesettype │ │ │ ├── type.go │ │ │ └── value.go │ ├── helpers │ │ ├── handler.go │ │ ├── helpers.go │ │ ├── import.go │ │ ├── model.go │ │ ├── references.go │ │ ├── unknown.go │ │ └── version.go │ └── project │ │ ├── applications │ │ ├── applications.go │ │ ├── applications_test.go │ │ ├── oidc.go │ │ ├── saml.go │ │ └── shared.go │ │ ├── attributes │ │ ├── attributes.go │ │ ├── attributes_test.go │ │ ├── shared.go │ │ ├── tenant.go │ │ └── user.go │ │ ├── authentication │ │ ├── authentication.go │ │ ├── authentication_test.go │ │ ├── embeddedlink.go │ │ ├── enchantedlink.go │ │ ├── magiclink.go │ │ ├── oauth.go │ │ ├── otp.go │ │ ├── passkeys.go │ │ ├── password.go │ │ ├── sso.go │ │ └── totp.go │ │ ├── authorization │ │ ├── authorization.go │ │ ├── authorization_test.go │ │ ├── permission.go │ │ └── role.go │ │ ├── connectors │ │ ├── abuseipdb.go │ │ ├── amplitude.go │ │ ├── auditwebhook.go │ │ ├── awss3.go │ │ ├── awstranslate.go │ │ ├── bitsight.go │ │ ├── connectors.go │ │ ├── connectors_test.go │ │ ├── datadog.go │ │ ├── devrevgrow.go │ │ ├── docebo.go │ │ ├── eightbyeightviber.go │ │ ├── eightbyeightwhatsapp.go │ │ ├── elephant.go │ │ ├── externaltokenhttp.go │ │ ├── fingerprint.go │ │ ├── fingerprintdescope.go │ │ ├── firebaseadmin.go │ │ ├── forter.go │ │ ├── genericemailgateway.go │ │ ├── genericsmsgateway.go │ │ ├── googlecloudlogging.go │ │ ├── googlecloudtranslation.go │ │ ├── googlemapsplaces.go │ │ ├── hibp.go │ │ ├── http.go │ │ ├── hubspot.go │ │ ├── incode.go │ │ ├── intercom.go │ │ ├── lokalise.go │ │ ├── mparticle.go │ │ ├── newrelic.go │ │ ├── radar.go │ │ ├── recaptcha.go │ │ ├── recaptchaenterprise.go │ │ ├── rekognition.go │ │ ├── salesforce.go │ │ ├── salesforcemarketingcloud.go │ │ ├── sardine.go │ │ ├── segment.go │ │ ├── sendgrid.go │ │ ├── ses.go │ │ ├── shared.go │ │ ├── shared_test.go │ │ ├── slack.go │ │ ├── smartling.go │ │ ├── smtp.go │ │ ├── sns.go │ │ ├── sumologic.go │ │ ├── supabase.go │ │ ├── telesign.go │ │ ├── traceable.go │ │ ├── turnstile.go │ │ ├── twiliocore.go │ │ └── twilioverify.go │ │ ├── flows │ │ ├── flow.go │ │ ├── flows.go │ │ ├── flows_test.go │ │ ├── styles.go │ │ └── tests │ │ │ ├── basicflow.json │ │ │ ├── basicstyle.json │ │ │ ├── connectorflow.json │ │ │ ├── emptystyle.json │ │ │ └── roleflow.json │ │ ├── jwttemplates │ │ ├── jwttemplate.go │ │ ├── jwttemplates.go │ │ └── jwttemplates_test.go │ │ ├── project.go │ │ ├── project_test.go │ │ ├── settings │ │ ├── invite.go │ │ ├── migration.go │ │ ├── settings.go │ │ └── settings_test.go │ │ ├── templates │ │ ├── emailservice.go │ │ ├── emailservice_test.go │ │ ├── emailtemplate.go │ │ ├── shared.go │ │ ├── testservice_test.go │ │ ├── textservice.go │ │ ├── texttemplate.go │ │ ├── voiceservice.go │ │ └── voicetemplate.go │ │ └── widgets │ │ ├── tests │ │ └── testwidget.json │ │ ├── widget.go │ │ ├── widgets.go │ │ └── widgets_test.go ├── provider │ └── provider.go └── resources │ └── project.go ├── main.go ├── renovate.json ├── terraform-registry-manifest.json └── tools ├── terragen ├── README.md ├── conngen │ ├── builtins.json │ ├── connector.go │ ├── connector.gotmpl │ ├── connectors.go │ ├── connectors.gotmpl │ ├── field.go │ ├── generate.go │ ├── naming.go │ ├── naming.json │ ├── parse.go │ └── test.gotmpl ├── docgen │ ├── docfile.gotmpl │ ├── generate.go │ └── parse.go ├── main.go ├── schema │ ├── field.go │ ├── file.go │ ├── model.go │ └── schema.go ├── srcgen │ ├── docs.gotmpl │ ├── generate.go │ └── models.gotmpl └── utils │ ├── debug.go │ ├── flags.go │ ├── json.go │ ├── paths.go │ ├── strings.go │ └── templates.go └── testacc ├── attribute.go ├── project.go ├── provider.go ├── resource.go └── testing.go /.github/actions/ci/build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/.github/actions/ci/build/action.yml -------------------------------------------------------------------------------- /.github/actions/ci/leaks/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/.github/actions/ci/leaks/action.yml -------------------------------------------------------------------------------- /.github/actions/ci/leaks/gitleaks.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/.github/actions/ci/leaks/gitleaks.toml -------------------------------------------------------------------------------- /.github/actions/ci/lint/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/.github/actions/ci/lint/action.yml -------------------------------------------------------------------------------- /.github/actions/ci/lint/golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/.github/actions/ci/lint/golangci.yml -------------------------------------------------------------------------------- /.github/actions/ci/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/.github/actions/ci/setup/action.yml -------------------------------------------------------------------------------- /.github/images/descope-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/.github/images/descope-logo.png -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/raw/project/applications/applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/applications/applications.md -------------------------------------------------------------------------------- /docs/raw/project/applications/oidc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/applications/oidc.md -------------------------------------------------------------------------------- /docs/raw/project/applications/saml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/applications/saml.md -------------------------------------------------------------------------------- /docs/raw/project/attributes/attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/attributes/attributes.md -------------------------------------------------------------------------------- /docs/raw/project/attributes/tenant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/attributes/tenant.md -------------------------------------------------------------------------------- /docs/raw/project/attributes/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/attributes/user.md -------------------------------------------------------------------------------- /docs/raw/project/authentication/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/authentication/authentication.md -------------------------------------------------------------------------------- /docs/raw/project/authentication/embeddedlink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/authentication/embeddedlink.md -------------------------------------------------------------------------------- /docs/raw/project/authentication/enchantedlink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/authentication/enchantedlink.md -------------------------------------------------------------------------------- /docs/raw/project/authentication/magiclink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/authentication/magiclink.md -------------------------------------------------------------------------------- /docs/raw/project/authentication/oauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/authentication/oauth.md -------------------------------------------------------------------------------- /docs/raw/project/authentication/otp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/authentication/otp.md -------------------------------------------------------------------------------- /docs/raw/project/authentication/passkeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/authentication/passkeys.md -------------------------------------------------------------------------------- /docs/raw/project/authentication/password.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/authentication/password.md -------------------------------------------------------------------------------- /docs/raw/project/authentication/sso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/authentication/sso.md -------------------------------------------------------------------------------- /docs/raw/project/authentication/totp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/authentication/totp.md -------------------------------------------------------------------------------- /docs/raw/project/authorization/authorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/authorization/authorization.md -------------------------------------------------------------------------------- /docs/raw/project/authorization/permission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/authorization/permission.md -------------------------------------------------------------------------------- /docs/raw/project/authorization/role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/authorization/role.md -------------------------------------------------------------------------------- /docs/raw/project/connectors/connectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/connectors/connectors.md -------------------------------------------------------------------------------- /docs/raw/project/connectors/sendgrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/connectors/sendgrid.md -------------------------------------------------------------------------------- /docs/raw/project/connectors/ses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/connectors/ses.md -------------------------------------------------------------------------------- /docs/raw/project/connectors/shared.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/connectors/shared.md -------------------------------------------------------------------------------- /docs/raw/project/connectors/smtp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/connectors/smtp.md -------------------------------------------------------------------------------- /docs/raw/project/connectors/sns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/connectors/sns.md -------------------------------------------------------------------------------- /docs/raw/project/connectors/twiliocore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/connectors/twiliocore.md -------------------------------------------------------------------------------- /docs/raw/project/connectors/twilioverify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/connectors/twilioverify.md -------------------------------------------------------------------------------- /docs/raw/project/flows/flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/flows/flow.md -------------------------------------------------------------------------------- /docs/raw/project/flows/styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/flows/styles.md -------------------------------------------------------------------------------- /docs/raw/project/jwttemplates/jwttemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/jwttemplates/jwttemplate.md -------------------------------------------------------------------------------- /docs/raw/project/jwttemplates/jwttemplates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/jwttemplates/jwttemplates.md -------------------------------------------------------------------------------- /docs/raw/project/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/project.md -------------------------------------------------------------------------------- /docs/raw/project/settings/invite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/settings/invite.md -------------------------------------------------------------------------------- /docs/raw/project/settings/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/settings/migration.md -------------------------------------------------------------------------------- /docs/raw/project/settings/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/settings/settings.md -------------------------------------------------------------------------------- /docs/raw/project/templates/emailservice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/templates/emailservice.md -------------------------------------------------------------------------------- /docs/raw/project/templates/emailtemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/templates/emailtemplate.md -------------------------------------------------------------------------------- /docs/raw/project/templates/textservice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/templates/textservice.md -------------------------------------------------------------------------------- /docs/raw/project/templates/texttemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/templates/texttemplate.md -------------------------------------------------------------------------------- /docs/raw/project/templates/voiceservice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/templates/voiceservice.md -------------------------------------------------------------------------------- /docs/raw/project/templates/voicetemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/templates/voicetemplate.md -------------------------------------------------------------------------------- /docs/raw/project/widgets/widget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/raw/project/widgets/widget.md -------------------------------------------------------------------------------- /docs/resources/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/docs/resources/project.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/go.sum -------------------------------------------------------------------------------- /internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/README.md -------------------------------------------------------------------------------- /internal/docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/docs/docs.go -------------------------------------------------------------------------------- /internal/docs/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/docs/models.go -------------------------------------------------------------------------------- /internal/entities/entities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/entities/entities.go -------------------------------------------------------------------------------- /internal/entities/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/entities/project.go -------------------------------------------------------------------------------- /internal/infra/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/infra/client.go -------------------------------------------------------------------------------- /internal/infra/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/infra/debug.go -------------------------------------------------------------------------------- /internal/infra/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/infra/errors.go -------------------------------------------------------------------------------- /internal/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/README.md -------------------------------------------------------------------------------- /internal/models/attrs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/README.md -------------------------------------------------------------------------------- /internal/models/attrs/boolattr/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/boolattr/bool.go -------------------------------------------------------------------------------- /internal/models/attrs/durationattr/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/durationattr/duration.go -------------------------------------------------------------------------------- /internal/models/attrs/durationattr/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/durationattr/validators.go -------------------------------------------------------------------------------- /internal/models/attrs/floatattr/float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/floatattr/float.go -------------------------------------------------------------------------------- /internal/models/attrs/intattr/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/intattr/int.go -------------------------------------------------------------------------------- /internal/models/attrs/listattr/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/listattr/list.go -------------------------------------------------------------------------------- /internal/models/attrs/listattr/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/listattr/match.go -------------------------------------------------------------------------------- /internal/models/attrs/mapattr/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/mapattr/map.go -------------------------------------------------------------------------------- /internal/models/attrs/objattr/modifiers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/objattr/modifiers.go -------------------------------------------------------------------------------- /internal/models/attrs/objattr/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/objattr/object.go -------------------------------------------------------------------------------- /internal/models/attrs/objattr/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/objattr/validators.go -------------------------------------------------------------------------------- /internal/models/attrs/setattr/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/setattr/set.go -------------------------------------------------------------------------------- /internal/models/attrs/stringattr/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/stringattr/defaults.go -------------------------------------------------------------------------------- /internal/models/attrs/stringattr/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/stringattr/string.go -------------------------------------------------------------------------------- /internal/models/attrs/stringattr/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/stringattr/validators.go -------------------------------------------------------------------------------- /internal/models/attrs/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/strings.go -------------------------------------------------------------------------------- /internal/models/attrs/strlistattr/strlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/strlistattr/strlist.go -------------------------------------------------------------------------------- /internal/models/attrs/strmapattr/strmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/strmapattr/strmap.go -------------------------------------------------------------------------------- /internal/models/attrs/strsetattr/strset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/strsetattr/strset.go -------------------------------------------------------------------------------- /internal/models/attrs/strsetattr/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/strsetattr/validators.go -------------------------------------------------------------------------------- /internal/models/attrs/types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/README.md -------------------------------------------------------------------------------- /internal/models/attrs/types/listtype/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/listtype/type.go -------------------------------------------------------------------------------- /internal/models/attrs/types/listtype/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/listtype/value.go -------------------------------------------------------------------------------- /internal/models/attrs/types/maptype/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/maptype/type.go -------------------------------------------------------------------------------- /internal/models/attrs/types/maptype/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/maptype/value.go -------------------------------------------------------------------------------- /internal/models/attrs/types/objtype/attrs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/objtype/attrs.go -------------------------------------------------------------------------------- /internal/models/attrs/types/objtype/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/objtype/type.go -------------------------------------------------------------------------------- /internal/models/attrs/types/objtype/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/objtype/value.go -------------------------------------------------------------------------------- /internal/models/attrs/types/settype/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/settype/type.go -------------------------------------------------------------------------------- /internal/models/attrs/types/settype/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/settype/value.go -------------------------------------------------------------------------------- /internal/models/attrs/types/valuelisttype/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/valuelisttype/type.go -------------------------------------------------------------------------------- /internal/models/attrs/types/valuelisttype/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/valuelisttype/value.go -------------------------------------------------------------------------------- /internal/models/attrs/types/valuemaptype/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/valuemaptype/type.go -------------------------------------------------------------------------------- /internal/models/attrs/types/valuemaptype/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/valuemaptype/value.go -------------------------------------------------------------------------------- /internal/models/attrs/types/valuesettype/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/valuesettype/type.go -------------------------------------------------------------------------------- /internal/models/attrs/types/valuesettype/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/attrs/types/valuesettype/value.go -------------------------------------------------------------------------------- /internal/models/helpers/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/helpers/handler.go -------------------------------------------------------------------------------- /internal/models/helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/helpers/helpers.go -------------------------------------------------------------------------------- /internal/models/helpers/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/helpers/import.go -------------------------------------------------------------------------------- /internal/models/helpers/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/helpers/model.go -------------------------------------------------------------------------------- /internal/models/helpers/references.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/helpers/references.go -------------------------------------------------------------------------------- /internal/models/helpers/unknown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/helpers/unknown.go -------------------------------------------------------------------------------- /internal/models/helpers/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/helpers/version.go -------------------------------------------------------------------------------- /internal/models/project/applications/applications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/applications/applications.go -------------------------------------------------------------------------------- /internal/models/project/applications/applications_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/applications/applications_test.go -------------------------------------------------------------------------------- /internal/models/project/applications/oidc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/applications/oidc.go -------------------------------------------------------------------------------- /internal/models/project/applications/saml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/applications/saml.go -------------------------------------------------------------------------------- /internal/models/project/applications/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/applications/shared.go -------------------------------------------------------------------------------- /internal/models/project/attributes/attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/attributes/attributes.go -------------------------------------------------------------------------------- /internal/models/project/attributes/attributes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/attributes/attributes_test.go -------------------------------------------------------------------------------- /internal/models/project/attributes/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/attributes/shared.go -------------------------------------------------------------------------------- /internal/models/project/attributes/tenant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/attributes/tenant.go -------------------------------------------------------------------------------- /internal/models/project/attributes/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/attributes/user.go -------------------------------------------------------------------------------- /internal/models/project/authentication/authentication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/authentication/authentication.go -------------------------------------------------------------------------------- /internal/models/project/authentication/authentication_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/authentication/authentication_test.go -------------------------------------------------------------------------------- /internal/models/project/authentication/embeddedlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/authentication/embeddedlink.go -------------------------------------------------------------------------------- /internal/models/project/authentication/enchantedlink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/authentication/enchantedlink.go -------------------------------------------------------------------------------- /internal/models/project/authentication/magiclink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/authentication/magiclink.go -------------------------------------------------------------------------------- /internal/models/project/authentication/oauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/authentication/oauth.go -------------------------------------------------------------------------------- /internal/models/project/authentication/otp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/authentication/otp.go -------------------------------------------------------------------------------- /internal/models/project/authentication/passkeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/authentication/passkeys.go -------------------------------------------------------------------------------- /internal/models/project/authentication/password.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/authentication/password.go -------------------------------------------------------------------------------- /internal/models/project/authentication/sso.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/authentication/sso.go -------------------------------------------------------------------------------- /internal/models/project/authentication/totp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/authentication/totp.go -------------------------------------------------------------------------------- /internal/models/project/authorization/authorization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/authorization/authorization.go -------------------------------------------------------------------------------- /internal/models/project/authorization/authorization_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/authorization/authorization_test.go -------------------------------------------------------------------------------- /internal/models/project/authorization/permission.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/authorization/permission.go -------------------------------------------------------------------------------- /internal/models/project/authorization/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/authorization/role.go -------------------------------------------------------------------------------- /internal/models/project/connectors/abuseipdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/abuseipdb.go -------------------------------------------------------------------------------- /internal/models/project/connectors/amplitude.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/amplitude.go -------------------------------------------------------------------------------- /internal/models/project/connectors/auditwebhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/auditwebhook.go -------------------------------------------------------------------------------- /internal/models/project/connectors/awss3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/awss3.go -------------------------------------------------------------------------------- /internal/models/project/connectors/awstranslate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/awstranslate.go -------------------------------------------------------------------------------- /internal/models/project/connectors/bitsight.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/bitsight.go -------------------------------------------------------------------------------- /internal/models/project/connectors/connectors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/connectors.go -------------------------------------------------------------------------------- /internal/models/project/connectors/connectors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/connectors_test.go -------------------------------------------------------------------------------- /internal/models/project/connectors/datadog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/datadog.go -------------------------------------------------------------------------------- /internal/models/project/connectors/devrevgrow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/devrevgrow.go -------------------------------------------------------------------------------- /internal/models/project/connectors/docebo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/docebo.go -------------------------------------------------------------------------------- /internal/models/project/connectors/eightbyeightviber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/eightbyeightviber.go -------------------------------------------------------------------------------- /internal/models/project/connectors/eightbyeightwhatsapp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/eightbyeightwhatsapp.go -------------------------------------------------------------------------------- /internal/models/project/connectors/elephant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/elephant.go -------------------------------------------------------------------------------- /internal/models/project/connectors/externaltokenhttp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/externaltokenhttp.go -------------------------------------------------------------------------------- /internal/models/project/connectors/fingerprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/fingerprint.go -------------------------------------------------------------------------------- /internal/models/project/connectors/fingerprintdescope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/fingerprintdescope.go -------------------------------------------------------------------------------- /internal/models/project/connectors/firebaseadmin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/firebaseadmin.go -------------------------------------------------------------------------------- /internal/models/project/connectors/forter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/forter.go -------------------------------------------------------------------------------- /internal/models/project/connectors/genericemailgateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/genericemailgateway.go -------------------------------------------------------------------------------- /internal/models/project/connectors/genericsmsgateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/genericsmsgateway.go -------------------------------------------------------------------------------- /internal/models/project/connectors/googlecloudlogging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/googlecloudlogging.go -------------------------------------------------------------------------------- /internal/models/project/connectors/googlecloudtranslation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/googlecloudtranslation.go -------------------------------------------------------------------------------- /internal/models/project/connectors/googlemapsplaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/googlemapsplaces.go -------------------------------------------------------------------------------- /internal/models/project/connectors/hibp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/hibp.go -------------------------------------------------------------------------------- /internal/models/project/connectors/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/http.go -------------------------------------------------------------------------------- /internal/models/project/connectors/hubspot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/hubspot.go -------------------------------------------------------------------------------- /internal/models/project/connectors/incode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/incode.go -------------------------------------------------------------------------------- /internal/models/project/connectors/intercom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/intercom.go -------------------------------------------------------------------------------- /internal/models/project/connectors/lokalise.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/lokalise.go -------------------------------------------------------------------------------- /internal/models/project/connectors/mparticle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/mparticle.go -------------------------------------------------------------------------------- /internal/models/project/connectors/newrelic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/newrelic.go -------------------------------------------------------------------------------- /internal/models/project/connectors/radar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/radar.go -------------------------------------------------------------------------------- /internal/models/project/connectors/recaptcha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/recaptcha.go -------------------------------------------------------------------------------- /internal/models/project/connectors/recaptchaenterprise.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/recaptchaenterprise.go -------------------------------------------------------------------------------- /internal/models/project/connectors/rekognition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/rekognition.go -------------------------------------------------------------------------------- /internal/models/project/connectors/salesforce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/salesforce.go -------------------------------------------------------------------------------- /internal/models/project/connectors/salesforcemarketingcloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/salesforcemarketingcloud.go -------------------------------------------------------------------------------- /internal/models/project/connectors/sardine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/sardine.go -------------------------------------------------------------------------------- /internal/models/project/connectors/segment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/segment.go -------------------------------------------------------------------------------- /internal/models/project/connectors/sendgrid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/sendgrid.go -------------------------------------------------------------------------------- /internal/models/project/connectors/ses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/ses.go -------------------------------------------------------------------------------- /internal/models/project/connectors/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/shared.go -------------------------------------------------------------------------------- /internal/models/project/connectors/shared_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/shared_test.go -------------------------------------------------------------------------------- /internal/models/project/connectors/slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/slack.go -------------------------------------------------------------------------------- /internal/models/project/connectors/smartling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/smartling.go -------------------------------------------------------------------------------- /internal/models/project/connectors/smtp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/smtp.go -------------------------------------------------------------------------------- /internal/models/project/connectors/sns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/sns.go -------------------------------------------------------------------------------- /internal/models/project/connectors/sumologic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/sumologic.go -------------------------------------------------------------------------------- /internal/models/project/connectors/supabase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/supabase.go -------------------------------------------------------------------------------- /internal/models/project/connectors/telesign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/telesign.go -------------------------------------------------------------------------------- /internal/models/project/connectors/traceable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/traceable.go -------------------------------------------------------------------------------- /internal/models/project/connectors/turnstile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/turnstile.go -------------------------------------------------------------------------------- /internal/models/project/connectors/twiliocore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/twiliocore.go -------------------------------------------------------------------------------- /internal/models/project/connectors/twilioverify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/connectors/twilioverify.go -------------------------------------------------------------------------------- /internal/models/project/flows/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/flows/flow.go -------------------------------------------------------------------------------- /internal/models/project/flows/flows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/flows/flows.go -------------------------------------------------------------------------------- /internal/models/project/flows/flows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/flows/flows_test.go -------------------------------------------------------------------------------- /internal/models/project/flows/styles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/flows/styles.go -------------------------------------------------------------------------------- /internal/models/project/flows/tests/basicflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/flows/tests/basicflow.json -------------------------------------------------------------------------------- /internal/models/project/flows/tests/basicstyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/flows/tests/basicstyle.json -------------------------------------------------------------------------------- /internal/models/project/flows/tests/connectorflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/flows/tests/connectorflow.json -------------------------------------------------------------------------------- /internal/models/project/flows/tests/emptystyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/flows/tests/emptystyle.json -------------------------------------------------------------------------------- /internal/models/project/flows/tests/roleflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/flows/tests/roleflow.json -------------------------------------------------------------------------------- /internal/models/project/jwttemplates/jwttemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/jwttemplates/jwttemplate.go -------------------------------------------------------------------------------- /internal/models/project/jwttemplates/jwttemplates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/jwttemplates/jwttemplates.go -------------------------------------------------------------------------------- /internal/models/project/jwttemplates/jwttemplates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/jwttemplates/jwttemplates_test.go -------------------------------------------------------------------------------- /internal/models/project/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/project.go -------------------------------------------------------------------------------- /internal/models/project/project_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/project_test.go -------------------------------------------------------------------------------- /internal/models/project/settings/invite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/settings/invite.go -------------------------------------------------------------------------------- /internal/models/project/settings/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/settings/migration.go -------------------------------------------------------------------------------- /internal/models/project/settings/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/settings/settings.go -------------------------------------------------------------------------------- /internal/models/project/settings/settings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/settings/settings_test.go -------------------------------------------------------------------------------- /internal/models/project/templates/emailservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/templates/emailservice.go -------------------------------------------------------------------------------- /internal/models/project/templates/emailservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/templates/emailservice_test.go -------------------------------------------------------------------------------- /internal/models/project/templates/emailtemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/templates/emailtemplate.go -------------------------------------------------------------------------------- /internal/models/project/templates/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/templates/shared.go -------------------------------------------------------------------------------- /internal/models/project/templates/testservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/templates/testservice_test.go -------------------------------------------------------------------------------- /internal/models/project/templates/textservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/templates/textservice.go -------------------------------------------------------------------------------- /internal/models/project/templates/texttemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/templates/texttemplate.go -------------------------------------------------------------------------------- /internal/models/project/templates/voiceservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/templates/voiceservice.go -------------------------------------------------------------------------------- /internal/models/project/templates/voicetemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/templates/voicetemplate.go -------------------------------------------------------------------------------- /internal/models/project/widgets/tests/testwidget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/widgets/tests/testwidget.json -------------------------------------------------------------------------------- /internal/models/project/widgets/widget.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/widgets/widget.go -------------------------------------------------------------------------------- /internal/models/project/widgets/widgets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/widgets/widgets.go -------------------------------------------------------------------------------- /internal/models/project/widgets/widgets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/models/project/widgets/widgets_test.go -------------------------------------------------------------------------------- /internal/provider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/provider/provider.go -------------------------------------------------------------------------------- /internal/resources/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/internal/resources/project.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/main.go -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/renovate.json -------------------------------------------------------------------------------- /terraform-registry-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/terraform-registry-manifest.json -------------------------------------------------------------------------------- /tools/terragen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/README.md -------------------------------------------------------------------------------- /tools/terragen/conngen/builtins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/conngen/builtins.json -------------------------------------------------------------------------------- /tools/terragen/conngen/connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/conngen/connector.go -------------------------------------------------------------------------------- /tools/terragen/conngen/connector.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/conngen/connector.gotmpl -------------------------------------------------------------------------------- /tools/terragen/conngen/connectors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/conngen/connectors.go -------------------------------------------------------------------------------- /tools/terragen/conngen/connectors.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/conngen/connectors.gotmpl -------------------------------------------------------------------------------- /tools/terragen/conngen/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/conngen/field.go -------------------------------------------------------------------------------- /tools/terragen/conngen/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/conngen/generate.go -------------------------------------------------------------------------------- /tools/terragen/conngen/naming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/conngen/naming.go -------------------------------------------------------------------------------- /tools/terragen/conngen/naming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/conngen/naming.json -------------------------------------------------------------------------------- /tools/terragen/conngen/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/conngen/parse.go -------------------------------------------------------------------------------- /tools/terragen/conngen/test.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/conngen/test.gotmpl -------------------------------------------------------------------------------- /tools/terragen/docgen/docfile.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/docgen/docfile.gotmpl -------------------------------------------------------------------------------- /tools/terragen/docgen/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/docgen/generate.go -------------------------------------------------------------------------------- /tools/terragen/docgen/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/docgen/parse.go -------------------------------------------------------------------------------- /tools/terragen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/main.go -------------------------------------------------------------------------------- /tools/terragen/schema/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/schema/field.go -------------------------------------------------------------------------------- /tools/terragen/schema/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/schema/file.go -------------------------------------------------------------------------------- /tools/terragen/schema/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/schema/model.go -------------------------------------------------------------------------------- /tools/terragen/schema/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/schema/schema.go -------------------------------------------------------------------------------- /tools/terragen/srcgen/docs.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/srcgen/docs.gotmpl -------------------------------------------------------------------------------- /tools/terragen/srcgen/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/srcgen/generate.go -------------------------------------------------------------------------------- /tools/terragen/srcgen/models.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/srcgen/models.gotmpl -------------------------------------------------------------------------------- /tools/terragen/utils/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/utils/debug.go -------------------------------------------------------------------------------- /tools/terragen/utils/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/utils/flags.go -------------------------------------------------------------------------------- /tools/terragen/utils/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/utils/json.go -------------------------------------------------------------------------------- /tools/terragen/utils/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/utils/paths.go -------------------------------------------------------------------------------- /tools/terragen/utils/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/utils/strings.go -------------------------------------------------------------------------------- /tools/terragen/utils/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/terragen/utils/templates.go -------------------------------------------------------------------------------- /tools/testacc/attribute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/testacc/attribute.go -------------------------------------------------------------------------------- /tools/testacc/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/testacc/project.go -------------------------------------------------------------------------------- /tools/testacc/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/testacc/provider.go -------------------------------------------------------------------------------- /tools/testacc/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/testacc/resource.go -------------------------------------------------------------------------------- /tools/testacc/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/descope/terraform-provider-descope/HEAD/tools/testacc/testing.go --------------------------------------------------------------------------------