forked from GoogleCloudPlatform/cloud-foundation-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKptfile
44 lines (44 loc) · 1.15 KB
/
Kptfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
apiVersion: kpt.dev/v1alpha1
kind: Kptfile
metadata:
name: kms-crypto-key
packageMetadata:
shortDescription: create a kms key ring, a kms crypto key, and apply an IAM role
to the crypto key
openAPI:
definitions:
io.k8s.cli.setters.iam-member:
description: IAM member to grant role
x-k8s-cli:
setter:
name: iam-member
value: ${IAM_MEMBER?}
setBy: PLACEHOLDER
io.k8s.cli.setters.role:
description: IAM role to grant
x-k8s-cli:
setter:
name: role
value: roles/cloudkms.signer
setBy: package-default
io.k8s.cli.setters.key-name:
description: name of key
x-k8s-cli:
setter:
name: key-name
value: allowed-key
setBy: package-default
io.k8s.cli.setters.ring-name:
description: name of ring
x-k8s-cli:
setter:
name: ring-name
value: allowed-ring
setBy: package-default
io.k8s.cli.setters.location:
description: location of ring
x-k8s-cli:
setter:
name: location
value: us-central1
setBy: package-default