-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.php
53 lines (48 loc) · 858 Bytes
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<style>
body
{
background-color:#f9f9f9;
}
h1
{
color:orange;
text-align:center;
}
p
{
font-size:30px;
text-align: center;
}
#content{
width: 400px;
margin:0px auto;
}
#header{
margin-top: 50px;
margin-bottom: 50px;
}
</style>
</head>
<body>
<div id="content">
<div id="header"><img src="<<banner file to S3>>"></div>
<div id="main">
<p>
<?php
$url = "http://169.254.169.254/latest/meta-data/instance-id";
$instance_id = file_get_contents($url);
echo "Instance ID: <b>" . $instance_id . "</b><br/>";
$url = "http://169.254.169.254/latest/meta-data/placement/availability-zone";
$zone = file_get_contents($url);
echo "Zone: <b>" . $zone . "</b><br/>";
echo "<p style='background-color:blue;'><b>I am the green deployment</b></p>"
?>
</p>
</div>
<div id="footer"> </div>
</div>
</body>
</html>