-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Start modernizing Okta provider with Go SDK v5 #1939
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Brenno Oliveira <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can the okta terraform provider be upgraded as well?
it should not be needed as the wrapper gets the version dynamically - I will double check |
yep it gets from your local, for example add this into a provider.tf provider "okta" {}
terraform {
required_providers {
okta = {
source = "okta/okta"
version = "~> 4.11.1"
}
}
} run |
Signed-off-by: Brenno Oliveira <[email protected]>
@sergeylanzman I'm waiting on your review to decide if I continue with this effort :) |
Signed-off-by: Brenno Oliveira <[email protected]>
Signed-off-by: Brenno Oliveira <[email protected]>
This PR modernizes the Okta provider by introducing the Okta Go SDK v5 while maintaining backward compatibility with the existing v2 SDK.
The following generators have been updated to use the v5 SDK:
New resources added:
Related to #1936
The code has been simplified by removing unnecessary type assertions and manual filtering, and the accuracy of the generated Terraform resources has been improved.
Further modernization of the remaining resources and the introduction of missing resources will be addressed in future PRs.