-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaws_services.go
58 lines (48 loc) · 1.2 KB
/
aws_services.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
package main
type AwsServices struct {
Route53 Route53 `json:"route53"`
Bastion Bastion `json:"bastion"`
Codebuild Codebuild `json:"codebuild"`
ECS ECS `json:"ecs"`
ES ES `json:"es"`
RDS RDS `json:"rds"`
SNS SNS `json:"sns"`
MQ MQ `json:"mq"`
}
type Route53 struct {
Domain string `json:"domain"`
DNSZoneID string `json:"dns_zone_id"`
}
type Bastion struct {
AMIID string `json:"ami_id"`
VolumeSize int `json:"volume_size"`
}
type ECS struct {
CPU int `json:"cpu"`
Memory int `json:"memory"`
VolumeSize int `json:"volume_size"`
}
type ES struct {
Enabled bool `json:"enabled"`
Version string `json:"version"`
}
type RDS struct {
Enabled bool `json:"enabled"`
Username string `json:"username"`
Password string `json:"password"`
Postgres bool `json:"postgres"`
}
type SNS struct {
Subscriptions []SNSSubscription `json:"subscriptions"`
}
type SNSSubscription struct {
Endpoint string `json:"endpoint"`
Protocol string `json:"protocol"`
}
type Codebuild struct {
Image string `json:"image"`
}
type MQ struct {
Enabled bool `json:"enabled"`
DeploymentMode string `json:"deployment_mode"`
}