Skip to content

Commit

Permalink
Merge pull request #30 from mineiros-io/lukas/update-child-modules
Browse files Browse the repository at this point in the history
fix: update child module (terraform-google-storage-bucket-iam) to v0.2.0
  • Loading branch information
Esanim committed Feb 20, 2024
2 parents b520d30 + 3418290 commit 13b48d7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 16 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ jobs:
name: Static Analysis
steps:
- name: Checkout
# for security reasons we pin commit ids and not tags.
# actions/checkout@v3.0.2 -> 2541b1294d2704b0964813337f33b291d3f8596b
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
# actions/checkout@v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
fetch-depth: 0

Expand Down Expand Up @@ -64,9 +63,8 @@ jobs:
name: Unit Tests
steps:
- name: Checkout
# for security reasons we pin commit ids and not tags.
# actions/checkout@v3.0.2 -> 2541b1294d2704b0964813337f33b291d3f8596b
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
# actions/checkout@v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
fetch-depth: 0

Expand Down
14 changes: 6 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ jobs:
name: Static Analysis
steps:
- name: Checkout
# for security reasons we pin commit ids and not tags.
# actions/checkout@v3.0.2 -> 2541b1294d2704b0964813337f33b291d3f8596b
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
# actions/checkout@v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
fetch-depth: 0

Expand Down Expand Up @@ -66,9 +65,8 @@ jobs:
name: Unit Tests
steps:
- name: Checkout
# for security reasons we pin commit ids and not tags.
# actions/checkout@v3.0.2 -> 2541b1294d2704b0964813337f33b291d3f8596b
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
# actions/checkout@v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
fetch-depth: 0

Expand Down Expand Up @@ -102,8 +100,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
# actions/checkout@v3.0.2
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
# actions/checkout@v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ locals {
}

module "iam" {
source = "github.com/mineiros-io/terraform-google-storage-bucket-iam.git?ref=v0.1.1"
source = "github.com/mineiros-io/terraform-google-storage-bucket-iam.git?ref=v0.2.0"

for_each = var.policy_bindings == null ? local.iam_map : {}

Expand All @@ -34,7 +34,7 @@ module "iam" {
}

module "policy_bindings" {
source = "github.com/mineiros-io/terraform-google-storage-bucket-iam.git?ref=v0.1.1"
source = "github.com/mineiros-io/terraform-google-storage-bucket-iam.git?ref=v0.2.0"

count = var.policy_bindings != null ? 1 : 0

Expand Down

0 comments on commit 13b48d7

Please sign in to comment.