Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Updating Auth0 TF provider version to minimum 1.0.0 #853

Merged
merged 2 commits into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ There are two ways to authenticate:
- [auth0 rules](https://auth0.github.io/auth0-cli/auth0_rules.html) - Manage resources for rules
- [auth0 tenants](https://auth0.github.io/auth0-cli/auth0_tenants.html) - Manage configured tenants
- [auth0 test](https://auth0.github.io/auth0-cli/auth0_test.html) - Try your Universal Login box or get a token
- [auth0 terraform generate](https://auth0.github.io/auth0-cli/auth0_terraform_generate.html) - Generate terraform configuration for your Auth0 Tenant
- [auth0 universal-login](https://auth0.github.io/auth0-cli/auth0_universal-login.html) - Manage the Universal Login experience
- [auth0 users](https://auth0.github.io/auth0-cli/auth0_users.html) - Manage resources for users

Expand All @@ -136,7 +137,7 @@ export EDITOR="code --wait"

# Uses sublime text with the --wait flag.
export EDITOR="subl --wait"

# Uses nano, a terminal based editor.
export EDITOR="nano"

Expand Down
2 changes: 1 addition & 1 deletion internal/cli/terraform.go
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ func createMainFile(outputDIR string) error {
required_providers {
auth0 = {
source = "auth0/auth0"
version = "1.0.0-beta.4"
version = ">= 1.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/terraform_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ func assertTerraformMainFileWasGeneratedCorrectly(t *testing.T, outputDIR string
required_providers {
auth0 = {
source = "auth0/auth0"
version = "1.0.0-beta.4"
version = ">= 1.0.0"
}
}
}
Expand Down
Loading