We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6157ad5 commit a82e87cCopy full SHA for a82e87c
infra/aggregation_mode/terraform/cloudinit/postgres-monitor-cloud-init.yaml
@@ -0,0 +1,38 @@
1
+#cloud-config
2
+hostname: ${hostname}
3
+fqdn: ${hostname}
4
+manage_etc_hosts: true
5
+
6
+users:
7
+ - name: app
8
+ shell: /bin/bash
9
+ ssh_authorized_keys:
10
+ - ${ssh_public_key}
11
+ - name: admin
12
13
+ sudo: ALL=(ALL) NOPASSWD:ALL
14
15
16
17
+package_update: true
18
+package_upgrade: true
19
20
+packages:
21
+ - ca-certificates
22
+ - curl
23
+ - wget
24
+ - gnupg
25
+ - vim
26
+ - git
27
+ - zip
28
+ - unzip
29
+ - openssl
30
+ - libssl-dev
31
+ - build-essential
32
+ - rsyslog
33
+ - htop
34
+ - rsync
35
+ - pkg-config
36
37
+runcmd:
38
+ - loginctl enable-linger app
0 commit comments