From dbe2fce39f75a58e161b2844cc98e7a3c9fcdf5b Mon Sep 17 00:00:00 2001 From: DTLP Date: Tue, 24 Sep 2024 11:15:29 +0100 Subject: [PATCH] Upd GCPPath to Path --- operator/gcp.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/operator/gcp.go b/operator/gcp.go index 4934488..7e6569a 100644 --- a/operator/gcp.go +++ b/operator/gcp.go @@ -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"] }`