File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Create Workload Identity Pool and Provider:
2222# Create Workload Identity Pool Provider for GitHub
2323module "github-wif" {
2424 source = "Cyclenerd/wif-github/google"
25- version = "1.0.0"
25+ version = "~> 1.0.0"
2626 project_id = "your-project-id"
2727}
2828
@@ -47,7 +47,7 @@ data "google_service_account" "github" {
4747# Allow service account to login via WIF and only from GitHub repository
4848module "github-service-account" {
4949 source = "Cyclenerd/wif-service-account/google"
50- version = "1.0.0"
50+ version = "~> 1.0.0"
5151 project_id = "your-project-id"
5252 pool_name = module.github-wif.pool_name
5353 account_id = data.google_service_account.github.account_id
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ With this example the following steps are executed and configured:
1919# Create Workload Identity Pool Provider for GitHub
2020module "github-wif" {
2121 source = "Cyclenerd/wif-github/google"
22- version = "1.0.0"
22+ version = "~> 1.0.0"
2323 project_id = var.project_id
2424}
2525
@@ -34,7 +34,7 @@ resource "google_service_account" "github" {
3434# Allow service account to login via WIF and only from GitHub repository
3535module "github-service-account" {
3636 source = "Cyclenerd/wif-service-account/google"
37- version = "1.0.0"
37+ version = "~> 1.0.0"
3838 project_id = var.project_id
3939 pool_name = module.github-wif.pool_name
4040 account_id = google_service_account.github.account_id
Original file line number Diff line number Diff line change 11# Create Workload Identity Pool Provider for GitHub
22module "github-wif" {
33 source = " Cyclenerd/wif-github/google"
4- version = " 1.0.0"
4+ version = " ~> 1.0.0"
55 project_id = var. project_id
66}
77
@@ -16,7 +16,7 @@ resource "google_service_account" "github" {
1616# Allow service account to login via WIF and only from GitHub repository
1717module "github-service-account" {
1818 source = " Cyclenerd/wif-service-account/google"
19- version = " 1.0.0"
19+ version = " ~> 1.0.0"
2020 project_id = var. project_id
2121 pool_name = module. github-wif . pool_name
2222 account_id = google_service_account. github . account_id
You can’t perform that action at this time.
0 commit comments