Skip to content

Commit 9346d10

Browse files
author
Nils
committed
version
1 parent 9349899 commit 9346d10

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Create Workload Identity Pool and Provider:
2222
# Create Workload Identity Pool Provider for GitHub
2323
module "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
4848
module "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

examples/github-actions/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ With this example the following steps are executed and configured:
1919
# Create Workload Identity Pool Provider for GitHub
2020
module "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
3535
module "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

examples/github-actions/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Create Workload Identity Pool Provider for GitHub
22
module "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
1717
module "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

0 commit comments

Comments
 (0)