-
Notifications
You must be signed in to change notification settings - Fork 0
/
user-email.yaml
41 lines (41 loc) · 988 Bytes
/
user-email.yaml
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
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
name: user-email-state
namespace: default
spec:
type: state.gcp.firestore
version: v1
metadata:
- name: type
value: "service_account"
- name: project_id
value: "helloslide"
- name: private_key_id
secretKeyRef:
name: google-secret
key: private_key_id
- name: private_key
secretKeyRef:
name: google-secret
key: private_key
- name: client_email
secretKeyRef:
name: google-secret
key: email
- name: client_id
secretKeyRef:
name: google-secret
key: client_id
- name: auth_uri
value: "https://accounts.google.com/o/oauth2/auth"
- name: token_uri
value: "https://oauth2.googleapis.com/token"
- name: auth_provider_x509_cert_url
value: "https://www.googleapis.com/oauth2/v1/certs"
- name: client_x509_cert_url
secretKeyRef:
name: google-secret
key: client_x509_cert_url
- name: entity_kind
value: "Email"