A Terraform provider to manage Okta resources, enabling infrastructure-as-code provisioning and management of users, groups, applications, and other Okta objects.
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
Terraform Version
v1.1.9
Affected Resource(s)
okta_inline_hook
Terraform Configuration Files
resource "okta_inline_hook" "twillio" {
name = "twillio"
version = "1.0.0"
type = "com.okta.telephony.provider"
auth = {
key = "Authorization"
type = "HEADER"
value = "secret"
}
}
# Copy-paste your Terraform configurations here - for large Terraform configs,
# please use a service like Dropbox and share a link to the ZIP file. For
# security, you can also encrypt the files using our GPG public key: https://keybase.io/hashicorp
Debug Output
Panic Output
Expected Behavior
Add inline hook
Actual Behavior
β Error: expected value to be one of 'com.okta.oauth2.tokens.transform', 'com.okta.import.transform', 'com.okta.saml.tokens.transform', 'com.okta.user.pre-registration', 'com.okta.user.credential.password.import', got 'com.okta.telephony.provider'
β
β with okta_inline_hook.twillio,
β on main.tf line 273, in resource "okta_inline_hook" "twillio":
β 273: type = "com.okta.telephony.provider"
It is one of the supported providers (early access)
Community Note
Terraform Version
v1.1.9
Affected Resource(s)
Terraform Configuration Files
resource "okta_inline_hook" "twillio" { name = "twillio" version = "1.0.0" type = "com.okta.telephony.provider"
channel = { version = "1.0.0" uri = "https://example.com/test" method = "POST" }
auth = { key = "Authorization" type = "HEADER" value = "secret" } }
Debug Output
Panic Output
Expected Behavior
Add inline hook
Actual Behavior
β Error: expected value to be one of 'com.okta.oauth2.tokens.transform', 'com.okta.import.transform', 'com.okta.saml.tokens.transform', 'com.okta.user.pre-registration', 'com.okta.user.credential.password.import', got 'com.okta.telephony.provider' β β with okta_inline_hook.twillio, β on main.tf line 273, in resource "okta_inline_hook" "twillio": β 273: type = "com.okta.telephony.provider"
It is one of the supported providers (early access)
Steps to Reproduce
terraform apply
Important Factoids
References
0000