-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresource_secrets.go
102 lines (85 loc) · 1.78 KB
/
resource_secrets.go
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package fly
import "context"
func (c *Client) SetSecrets(ctx context.Context, appName string, secrets map[string]string) (*Release, error) {
query := `
mutation($input: SetSecretsInput!) {
setSecrets(input: $input) {
release {
id
version
reason
description
user {
id
email
name
}
evaluationId
createdAt
}
}
}
`
input := SetSecretsInput{AppID: appName}
for k, v := range secrets {
input.Secrets = append(input.Secrets, SetSecretsInputSecret{Key: k, Value: v})
}
req := c.NewRequest(query)
req.Var("input", input)
ctx = ctxWithAction(ctx, "set_secrets")
data, err := c.RunWithContext(ctx, req)
if err != nil {
return nil, err
}
return &data.SetSecrets.Release, nil
}
func (c *Client) UnsetSecrets(ctx context.Context, appName string, keys []string) (*Release, error) {
query := `
mutation($input: UnsetSecretsInput!) {
unsetSecrets(input: $input) {
release {
id
version
reason
description
user {
id
email
name
}
evaluationId
createdAt
}
}
}
`
req := c.NewRequest(query)
req.Var("input", UnsetSecretsInput{AppID: appName, Keys: keys})
ctx = ctxWithAction(ctx, "unset_secrets")
data, err := c.RunWithContext(ctx, req)
if err != nil {
return nil, err
}
return &data.UnsetSecrets.Release, nil
}
func (c *Client) GetAppSecrets(ctx context.Context, appName string) ([]Secret, error) {
query := `
query ($appName: String!) {
app(name: $appName) {
secrets {
name
digest
createdAt
}
}
}
`
req := c.NewRequest(query)
req.Var("appName", appName)
ctx = ctxWithAction(ctx, "get_app_secrets")
data, err := c.RunWithContext(ctx, req)
if err != nil {
return nil, err
}
return data.App.Secrets, nil
}