-
Notifications
You must be signed in to change notification settings - Fork 14
EC2
mpolcik edited this page Jul 26, 2018
·
2 revisions
$ go run main.go --region us-east-1 --service ec2
+---------------------+--------------------------------+-------------+----------+
| EC2 | VOLUMES | SECURITY | |
| | | | EC2 TAGS |
| | (NONE) - NOT ENCRYPTED | GROUPS | |
| | | | |
| | (DKMS) - ENCRYPTED WITH | | |
| | DEFAULT KMSKEY | | |
+---------------------+--------------------------------+-------------+----------+
| i-0fa455c90ace32283 | vol-0a8143f0b2e78424d[DKMS] | sg-aaaaaaa | App:some |
| | vol-0c4bacc1704c98f56[NONE] | | Key:Val |
| | | | |
| | | | |
+---------------------+--------------------------------+-------------+----------+
- First column
EC2
contains instance ID. - Second column
Volumes
contains IDs of attached volumes(virtual disks) to given EC2. Suffixes meaning:-
[NONE]
- Volume not encrypted. -
[DKMS]
- Volume encrypted using AWS Default KMS Key.
-
- Third column
Security Groups
contains IDs of security groups that have too open permissions. e.g. CIDR block is equal to0.0.0.0/0
(open to the whole world). - Fourth column
EC2 TAGS
contains tags of a given EC2 instance to help you identify purpose of this instance.