-
Notifications
You must be signed in to change notification settings - Fork 9
/
main.go
67 lines (55 loc) · 1.82 KB
/
main.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
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package main
import (
"context"
"encoding/json"
"namespacelabs.dev/foundation/framework/provisioning"
"namespacelabs.dev/foundation/internal/fnerrors"
"namespacelabs.dev/foundation/schema"
"namespacelabs.dev/foundation/std/execution/defs"
"namespacelabs.dev/foundation/universe/aws/eks"
fniam "namespacelabs.dev/foundation/universe/aws/iam"
)
func main() {
h := provisioning.NewHandlers()
henv := h.MatchEnv(&schema.Environment{Runtime: "kubernetes"})
henv.HandleStack(configuration{})
provisioning.Handle(h)
}
type configuration struct{}
func (configuration) Apply(ctx context.Context, req provisioning.StackRequest, out *provisioning.ApplyOutput) error {
eksDetails := &eks.EKSServerDetails{}
if ok, err := req.CheckUnpackInput(eksDetails); err != nil {
return err
} else if !ok {
return nil
}
// https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_examples_s3_rw-bucket.html
policy := fniam.PolicyDocument{
Version: "2012-10-17",
Statement: []fniam.StatementEntry{
{
Effect: "Allow",
Action: []string{"ecr:*"},
Resource: []string{"*"},
},
},
}
policyBytes, err := json.Marshal(policy)
if err != nil {
return fnerrors.InternalError("failed to serialize policy: %w", err)
}
associate := &fniam.OpAssociatePolicy{
RoleName: eksDetails.ComputedIamRoleName,
PolicyName: "fn-aws-ecr-access",
PolicyJson: string(policyBytes),
}
out.Invocations = append(out.Invocations, defs.Static("ECR Access IAM Policy", associate))
return nil
}
func (configuration) Delete(context.Context, provisioning.StackRequest, *provisioning.DeleteOutput) error {
// XXX unimplemented
return nil
}