-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename auth0_encryption_key to auth0_encryption_key_manager
- Loading branch information
Showing
10 changed files
with
515 additions
and
515 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
.../resources/auth0_encryption_key/import.sh → ...es/auth0_encryption_key_manager/import.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# As this is not a resource identifiable by an ID within the Auth0 Management API, | ||
# auth0_encryption_key can be imported using a random string. | ||
# auth0_encryption_key_manager can be imported using a random string. | ||
# | ||
# We recommend [Version 4 UUID](https://www.uuidgenerator.net/version4) | ||
# | ||
# Example: | ||
terraform import auth0_encryption_key.my_key "6f0519ad-ea35-44a3-9b0e-ac9c631612c2" | ||
terraform import auth0_encryption_key_manager.my_key_manager "6f0519ad-ea35-44a3-9b0e-ac9c631612c2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
resource "auth0_encryption_key_manager" "my_encryption_key_manager_initial" { | ||
key_rotation_id = "da9f2f3b-1c7e-4245-8982-9a25da8407c4" | ||
} | ||
|
||
resource "auth0_encryption_key_manager" "my_encryption_key_manager_rekey" { | ||
key_rotation_id = "68feba2c-7768-40f3-9d71-4b91e0233abf" | ||
} | ||
|
2 changes: 1 addition & 1 deletion
2
internal/auth0/encryptionkey/flatten.go → ...nal/auth0/encryptionkeymanager/flatten.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package encryptionkey | ||
package encryptionkeymanager | ||
|
||
import ( | ||
"github.com/auth0/go-auth0/management" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.