File tree 4 files changed +9
-8
lines changed
examples/poc/modules/secret-manager
4 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -43,11 +43,11 @@ jobs:
43
43
id-token : ' write'
44
44
# Steps represent a sequence of tasks that will be executed as part of the job
45
45
steps :
46
- - uses : ' actions/checkout@v2 '
46
+ - uses : ' actions/checkout@v4 '
47
47
48
48
- id : ' auth'
49
49
name : ' Authenticate to Google Cloud'
50
- uses : ' google-github-actions/auth@v0 '
50
+ uses : ' google-github-actions/auth@v2 '
51
51
with :
52
52
token_format : ' access_token'
53
53
WORKLOAD_IDENTITY_PROVIDER : ${{ env.WORKLOAD_IDENTITY_PROVIDER }}
Original file line number Diff line number Diff line change @@ -43,11 +43,11 @@ jobs:
43
43
id-token : ' write'
44
44
# Steps represent a sequence of tasks that will be executed as part of the job
45
45
steps :
46
- - uses : ' actions/checkout@v2 '
46
+ - uses : ' actions/checkout@v4 '
47
47
48
48
- id : ' auth'
49
49
name : ' Authenticate to Google Cloud'
50
- uses : ' google-github-actions/auth@v0 '
50
+ uses : ' google-github-actions/auth@v2 '
51
51
with :
52
52
token_format : ' access_token'
53
53
WORKLOAD_IDENTITY_PROVIDER : ${{ env.WORKLOAD_IDENTITY_PROVIDER }}
Original file line number Diff line number Diff line change @@ -43,11 +43,11 @@ jobs:
43
43
id-token : ' write'
44
44
# Steps represent a sequence of tasks that will be executed as part of the job
45
45
steps :
46
- - uses : ' actions/checkout@v2 '
46
+ - uses : ' actions/checkout@v4 '
47
47
48
48
- id : ' auth'
49
49
name : ' Authenticate to Google Cloud'
50
- uses : ' google-github-actions/auth@v0 '
50
+ uses : ' google-github-actions/auth@v2 '
51
51
with :
52
52
token_format : ' access_token'
53
53
WORKLOAD_IDENTITY_PROVIDER : ${{ env.WORKLOAD_IDENTITY_PROVIDER }}
Original file line number Diff line number Diff line change @@ -34,13 +34,14 @@ resource "google_secret_manager_secret" "secret-basic" {
34
34
}
35
35
36
36
replication {
37
- automatic = true
37
+ auto {}
38
38
}
39
+
39
40
depends_on = [google_project_service . secret-manager ]
40
41
}
41
42
42
43
43
44
resource "google_secret_manager_secret_version" "secret-version-basic" {
44
45
secret = google_secret_manager_secret. secret-basic . id
45
46
secret_data = var. secret_version
46
- }
47
+ }
You can’t perform that action at this time.
0 commit comments