Skip to content

Commit

Permalink
Updating Auth0 TF provider version to minimum 1.0.0 (#853)
Browse files Browse the repository at this point in the history
Updating provider version to minimum 1.0.0, added reademe reference

Co-authored-by: Will Vedder <[email protected]>
  • Loading branch information
willvedd and willvedd committed Sep 22, 2023
1 parent 1b93f15 commit 82918a4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
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

0 comments on commit 82918a4

Please sign in to comment.