-
Notifications
You must be signed in to change notification settings - Fork 0
/
Configure a Firewall and a Startup Script with Deployment Manager'
56 lines (48 loc) · 1.6 KB
/
Configure a Firewall and a Startup Script with Deployment Manager'
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
In starting, do exactly what is mentioned in the Lab documentation -
Paste this in qwiklabs.jinja file,exactly -
resources:
- type: compute.v1.instance
name: vm-test
properties:
zone: {{ properties["zone"] }}
machineType: https://www.googleapis.com/compute/v1/projects/{{ env["project"] }}/zones/{{ properties["zone"] }}/machineTypes/f1-micro
# For examples on how to use startup scripts on an instance, see:
# https://cloud.google.com/compute/docs/startupscript
disks:
- deviceName: boot
type: PERSISTENT
boot: true
autoDelete: true
initializeParams:
diskName: disk-{{ env["deployment"] }}
sourceImage: https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/family/debian-9
networkInterfaces:
- network: https://www.googleapis.com/compute/v1/projects/{{ env["project"] }}/global/networks/default
# Access Config required to give the instance a public IP address
accessConfigs:
- name: External NAT
type: ONE_TO_ONE_NAT
tags:
items:
- http
metadata:
items:
- key: startup-script
value: |
#!/bin/bash
apt-get update
apt-get install -y apache2
- type: compute.v1.firewall
name: default-allow-http
properties:
network: https://www.googleapis.com/compute/v1/projects/{{ env["project"] }}/global/networks/default
targetTags:
- http
allowed:
- IPProtocol: tcp
ports:
- '80'
sourceRanges:
- 0.0.0.0/0
Last Command -
gcloud deployment-manager deployments create test --config=qwiklabs.yaml