Skip to content

Commit

Permalink
Fix versions
Browse files Browse the repository at this point in the history
  • Loading branch information
romanini-ciandt committed Nov 8, 2024
1 parent 67f2d65 commit 693ac7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/autokey_example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "autokey" {
source = "terraform-google-modules/kms/google//modules/autokey"
version = "3.1.0"
version = "~> 3.2"

project_id = var.project_id
autokey_folder_number = var.folder_id
Expand Down
3 changes: 2 additions & 1 deletion examples/import_only_example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ resource "random_pet" "main" {
}

module "kms" {
source = "romanini-ciandt/kms/google"
source = "terraform-google-modules/kms/google"
version = "~> 3.2"

project_id = var.project_id
keyring = random_pet.main.id
Expand Down

0 comments on commit 693ac7c

Please sign in to comment.