-
Notifications
You must be signed in to change notification settings - Fork 7
/
machines-v2.yml
88 lines (88 loc) · 2.1 KB
/
machines-v2.yml
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
azure:
tags:
cluster_name: azure-infra
created_by: edb-terraform
images:
rocky:
publisher: erockyenterprisesoftwarefoundationinc1653071250513
offer: rockylinux
sku: free
version: 8.6.0
ssh_user: rocky
rocky_8_7_0:
publisher: erockyenterprisesoftwarefoundationinc1653071250513
offer: rockylinux
sku: free
version: 8.7.0
ssh_user: rocky
regions:
westus:
cidr_block: 10.2.0.0/16
zones:
proxy:
zone: 0
cidr: 10.2.20.0/24
main:
zone: 0
cidr: 10.2.30.0/24
ports:
- port: 22
protocol: tcp
# Azure does not accept overlapping CIDRs for the same rule
# Meaning 0.0.0.0 cannot be used in this case with any defaults since it overlaps all CIDRs
# defaults: 'service'
description: "SSH"
type: ingress
access: allow
cidrs:
- 0.0.0.0/0
- port: 443
defaults: 'public'
protocol: tcp
description: "HTTPS"
- port: 22
to_port: 65
defaults: 'internal'
protocol: tcp
description: "ranges"
machines:
dbt2-driver:
image_name: rocky_8_7_0
region: westus
zone_name: proxy
instance_type: Standard_D2s_v3
volume:
type: StandardSSD_LRS
size_gb: 50
tags:
type: dbt2-driver
pg1:
image_name: rocky
region: westus
zone_name: main
ports:
- protocol: icmp
description: "ping"
cidrs:
- 10.2.20.0/24
- protocol: icmp
description: "ping"
type: egress
cidrs:
- 10.2.20.0/24
instance_type: Standard_D2s_v3
volume:
type: StandardSSD_LRS
size_gb: 50
additional_volumes:
- mount_point: /opt/pg_data
type: UltraSSD_LRS
size_gb: 50
iops: 1000
- mount_point: /opt/pg_wal
type: UltraSSD_LRS
size_gb: 50
iops: 1000
tags:
type: postgres