-
Notifications
You must be signed in to change notification settings - Fork 16
/
mock-ec2-metadata-config.json
65 lines (63 loc) · 2 KB
/
mock-ec2-metadata-config.json
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
{
"Server": {
"HTTPPort": 8111,
"Log": "./mock-metadata-app.log",
"HTTPAccessLog": "./mock-metadata-access.log"
},
"MetadataValues" : {
"ami-id": "ami-1234",
"ami-launch-index": "0",
"ami-manifest-path": "(unknown)",
"availability-zone": "ww-region-1a",
"hostname": "mock-hostname",
"instance-action": "mock-instance-action",
"instance-id": "mock-instance-id",
"instance-type": "mock-instance-type",
"mac": "00:00:00:00:00:00",
"profile": "mock-profile",
"reservation-id":"mock-reservation-id",
"user" : "mock-user",
"security-credentials": {
"AccessKeyId" : "mock-access-key",
"SecretAccessKey" : "mock-secret-key",
"Token": "mock-token",
"Expiration": "2112-12-31T11:59:59Z",
"Code": "Success"
},
"security-groups": [
"mock-security-group"
]
},
"MetadataPrefixes": [
"/2009-04-04/meta-data",
"/latest/meta-data"
],
"UserdataValues" : {
"environment_code" : "dev",
"environment_name" : "Development",
"app_code" : "mock",
"app_name" : "mock_app",
"app_email" : "[email protected]",
"app_description": "Mock Metadata Description",
"cluster_code" : "cluster_code",
"cluster_name" : "cluser_name",
"cluster_stack" : "cluster_stack",
"instance_configuration_name" : "test1",
"hostname_suffix" : "test1",
"volume_sizes_gb" : "8",
"volume_devices" : "/dev/sda1",
"volume_mount_points" : "/",
"volume_snapshot_frequencies" :"",
"snapshot_days_retained" : "7",
"region_code" : "iad2",
"hostname" : "mock-hostname",
"vpc_name" :"vpc",
"subnet_name" : "subnet",
"nimbul_key" :"key",
"build_tag" : "build_tag"
},
"UserdataPrefixes": [
"/2009-04-04/user-data",
"/latest/user-data"
]
}