Skip to content

Commit

Permalink
Upd GCPPath to Path
Browse files Browse the repository at this point in the history
  • Loading branch information
DTLP committed Sep 24, 2024
1 parent dde2f16 commit dbe2fce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions operator/gcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ const (
)

var gcpPolicyTemplate = `
path "{{ .GCPPath }}/static-account/{{ .Name }}" {
path "{{ .Path }}/static-account/{{ .Name }}" {
capabilities = ["read"]
}
path "{{ .GCPPath }}/static-account/{{ .Name }}/token" {
path "{{ .Path }}/static-account/{{ .Name }}/token" {
capabilities = ["create", "read", "update", "delete", "list"]
}
path "{{ .GCPPath }}/static-account/{{ .Name }}/key" {
path "{{ .Path }}/static-account/{{ .Name }}/key" {
capabilities = ["create", "read", "update", "delete", "list"]
}
path "{{ .GCPPath }}/token/{{ .Name }}" {
path "{{ .Path }}/token/{{ .Name }}" {
capabilities = ["create", "read", "update", "delete", "list"]
}
path "{{ .GCPPath }}/key/{{ .Name }}" {
path "{{ .Path }}/key/{{ .Name }}" {
capabilities = ["create", "read", "update", "delete", "list"]
}`

Expand Down

0 comments on commit dbe2fce

Please sign in to comment.