Saturday, August 21, 2021

Friday, August 20, 2021

AWS : Direct Connect

https://docs.aws.amazon.com/directconnect/latest/UserGuide/Welcome.html

Elastic IP Address : Delete /Disassociate

https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html


https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Scenario4.html


1st Disassociate Elastic IP Address

then Release Elastic IP Address


if Elastic IP is not bound, its chargeable

AWS Routing : 101

https://medium.com/@mda590/aws-routing-101-67879d23014d


https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Scenario4.html



https://karanawsbucket.s3.us-east-1.amazonaws.com/Documents/AWS%20Routing%20101.%20Introduction%20_%20by%20Matt%20Adorjan%20_%20Medium.pdf

User Data :AWS : 80 : WebPort

https://gist.github.com/nktstudios/fcaf50c30f4ce50790876a3fe5dd8ac7


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#!/bin/bash

# update the machine
yum update -y

# install http
yum install -y httpd.x86_64

# start the service
systemctl start httpd.service

# enable service across reboots
systemctl enable httpd.service

# create the html page to render
echo "<h1>Hello World from NKT Studios!</h1>" >/var/www/html/index.html

Azure - Pipeline - Add Approver for Stage

https://learn.microsoft.com/en-us/azure/devops/pipelines/process/approvals?view=azure-devops&tabs=check-pass