|
| 1 | +resource "aws_instance" "web" { |
| 2 | + count = length(var.ec2_names) |
| 3 | + ami = data.aws_ami.amazon-2.id |
| 4 | + instance_type = "t2.micro" |
| 5 | + associate_public_ip_address = true |
| 6 | + vpc_security_group_ids = [var.sg_id] |
| 7 | + subnet_id = var.subnets[count.index] |
| 8 | + availability_zone = data.aws_availability_zones.available.names[count.index] |
| 9 | + user_data = <<EOF |
| 10 | + #!/bin/bash |
| 11 | + sudo yum update -y |
| 12 | + sudo yum install -y httpd |
| 13 | + sudo yum install -y git |
| 14 | + export META_INST_ID=`curl http://169.254.169.254/latest/meta-data/instance-id` |
| 15 | + export META_INST_TYPE=`curl http://169.254.169.254/latest/meta-data/instance-type` |
| 16 | + export META_INST_AZ=`curl http://169.254.169.254/latest/meta-data/placement/availability-zone` |
| 17 | + cd /var/www/html |
| 18 | + echo "<!DOCTYPE html>" >> index.html |
| 19 | + echo "<html lang="en">" >> index.html |
| 20 | + echo "<head>" >> index.html |
| 21 | + echo " <meta charset="UTF-8">" >> index.html |
| 22 | + echo " <meta name="viewport" content="width=device-width, initial-scale=1.0">" >> index.html |
| 23 | + echo " <style>" >> index.html |
| 24 | + echo " @import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');" >> index.html |
| 25 | + echo " html {" >> index.html |
| 26 | + echo " position: relative;" >> index.html |
| 27 | + echo " overflow-x: hidden !important;" >> index.html |
| 28 | + echo " }" >> index.html |
| 29 | + echo " * {" >> index.html |
| 30 | + echo " box-sizing: border-box;" >> index.html |
| 31 | + echo " }" >> index.html |
| 32 | + echo " body {" >> index.html |
| 33 | + echo " font-family: 'Open Sans', sans-serif;" >> index.html |
| 34 | + echo " color: #324e63;" >> index.html |
| 35 | + echo " }" >> index.html |
| 36 | + echo " .wrapper {" >> index.html |
| 37 | + echo " width: 100%;" >> index.html |
| 38 | + echo " width: 100%;" >> index.html |
| 39 | + echo " height: auto;" >> index.html |
| 40 | + echo " min-height: 90vh;" >> index.html |
| 41 | + echo " padding: 50px 20px;" >> index.html |
| 42 | + echo " padding-top: 100px;" >> index.html |
| 43 | + echo " display: flex;" >> index.html |
| 44 | + echo " }" >> index.html |
| 45 | + echo " .instance-card {" >> index.html |
| 46 | + echo " width: 100%;" >> index.html |
| 47 | + echo " min-height: 380px;" >> index.html |
| 48 | + echo " margin: auto;" >> index.html |
| 49 | + echo " box-shadow: 12px 12px 2px 1px rgba(13, 28, 39, 0.4);" >> index.html |
| 50 | + echo " background: #fff;" >> index.html |
| 51 | + echo " border-radius: 15px;" >> index.html |
| 52 | + echo " border-width: 1px;" >> index.html |
| 53 | + echo " max-width: 500px;" >> index.html |
| 54 | + echo " position: relative;" >> index.html |
| 55 | + echo " border: thin groove #9c83ff;" >> index.html |
| 56 | + echo " }" >> index.html |
| 57 | + echo " .instance-card__cnt {" >> index.html |
| 58 | + echo " margin-top: 35px;" >> index.html |
| 59 | + echo " text-align: center;" >> index.html |
| 60 | + echo " padding: 0 20px;" >> index.html |
| 61 | + echo " padding-bottom: 40px;" >> index.html |
| 62 | + echo " transition: all .3s;" >> index.html |
| 63 | + echo " }" >> index.html |
| 64 | + echo " .instance-card__name {" >> index.html |
| 65 | + echo " font-weight: 700;" >> index.html |
| 66 | + echo " font-size: 24px;" >> index.html |
| 67 | + echo " color: #6944ff;" >> index.html |
| 68 | + echo " margin-bottom: 15px;" >> index.html |
| 69 | + echo " }" >> index.html |
| 70 | + echo " .instance-card-inf__item {" >> index.html |
| 71 | + echo " padding: 10px 35px;" >> index.html |
| 72 | + echo " min-width: 150px;" >> index.html |
| 73 | + echo " }" >> index.html |
| 74 | + echo " .instance-card-inf__title {" >> index.html |
| 75 | + echo " font-weight: 700;" >> index.html |
| 76 | + echo " font-size: 27px;" >> index.html |
| 77 | + echo " color: #324e63;" >> index.html |
| 78 | + echo " }" >> index.html |
| 79 | + echo " .instance-card-inf__txt {" >> index.html |
| 80 | + echo " font-weight: 500;" >> index.html |
| 81 | + echo " margin-top: 7px;" >> index.html |
| 82 | + echo " }" >> index.html |
| 83 | + echo " </style>" >> index.html |
| 84 | + echo " <title>Amazon EC2 Status</title>" >> index.html |
| 85 | + echo "</head>" >> index.html |
| 86 | + echo "<body>" >> index.html |
| 87 | + echo " <div class="wrapper">" >> index.html |
| 88 | + echo " <div class="instance-card">" >> index.html |
| 89 | + echo " <div class="instance-card__cnt">" >> index.html |
| 90 | + echo " <div class="instance-card__name">Your EC2 Instance is running!</div>" >> index.html |
| 91 | + echo " <div class="instance-card-inf">" >> index.html |
| 92 | + echo " <div class="instance-card-inf__item">" >> index.html |
| 93 | + echo " <div class="instance-card-inf__txt">Instance Id</div>" >> index.html |
| 94 | + echo " <div class="instance-card-inf__title">" $META_INST_ID "</div>" >> index.html |
| 95 | + echo " </div>" >> index.html |
| 96 | + echo " <div class="instance-card-inf__item">" >> index.html |
| 97 | + echo " <div class="instance-card-inf__txt">Instance Type</div>" >> index.html |
| 98 | + echo " <div class="instance-card-inf__title">" $META_INST_TYPE "</div>" >> index.html |
| 99 | + echo " </div>" >> index.html |
| 100 | + echo " <div class="instance-card-inf__item">" >> index.html |
| 101 | + echo " <div class="instance-card-inf__txt">Availability zone</div>" >> index.html |
| 102 | + echo " <div class="instance-card-inf__title">" $META_INST_AZ "</div>" >> index.html |
| 103 | + echo " </div>" >> index.html |
| 104 | + echo " </div>" >> index.html |
| 105 | + echo " </div>" >> index.html |
| 106 | + echo " </div>" >> index.html |
| 107 | + echo "</body>" >> index.html |
| 108 | + echo "</html>" >> index.html |
| 109 | + sudo service httpd start |
| 110 | + EOF |
| 111 | + tags = { |
| 112 | + Name = var.ec2_names[count.index] |
| 113 | + } |
| 114 | +} |
0 commit comments