new chage
This commit is contained in:
parent
47bc5069ab
commit
d5bfe0b869
|
@ -0,0 +1 @@
|
||||||
|
command: packer build -var "accesskey=*" -var "secretkey=" -var "shellpath=packages.sh" .\apache.json
|
|
@ -0,0 +1,34 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"variables":
|
||||||
|
{
|
||||||
|
"accesskey": "",
|
||||||
|
"secretkey": "",
|
||||||
|
"shellpath": "packages.sh"
|
||||||
|
},
|
||||||
|
"builders":[
|
||||||
|
{
|
||||||
|
"type": "amazon-ebs",
|
||||||
|
"access_key": "{{user `accesskey`}}",
|
||||||
|
"secret_key": "{{user `secretkey`}}",
|
||||||
|
"region": "ap-south-1",
|
||||||
|
"source_ami": "ami-sa7608343426b",
|
||||||
|
"instance_type": "t2.micro",
|
||||||
|
"ssh_username": "ubuntu",
|
||||||
|
"ami_name": "apache",
|
||||||
|
"tags": {
|
||||||
|
"OS_Version": "Ubuntu",
|
||||||
|
"Release": "Latest"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"provisioners":[
|
||||||
|
{
|
||||||
|
"type": "shell",
|
||||||
|
"script": "{{user `shellpath`}}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
echo "installing apache "
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install apache2 -y
|
||||||
|
sudo apt-get update
|
||||||
|
sudo service apache2 restart
|
Loading…
Reference in New Issue