-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinventory.yml
42 lines (33 loc) · 1.25 KB
/
inventory.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
all:
vars:
ansible_user: "ubuntu"
ansible_port: 22
# OpenSSH private key should be placed
ansible_ssh_private_key_file: 'keypair'
# if you want to specify the version of python, uncomment and set this field.
ansible_python_interpreter: '/usr/bin/python3'
# working directory
user_dir: '/home/{{ ansible_user }}'
geth_version: "v0.11.0"
story_version: "v0.13.0"
go_version: "1.22.2"
# last state of system daemon.
# if set to started, systemd daemons will be started.
# more: https://docs.ansible.com/ansible/latest/collections/ansible/builtin/systemd_service_module.html#ansible-collections-ansible-builtin-systemd-service-module
systemd_state: "started"
# customize yourself
ufw_rules:
- { ip: "1.1.1.1", port: "22", comment: "Control SSH" }
- { ip: "", port: "26656", comment: "P2P Port" }
- { ip: "1.1.1.1", port: "26660", comment: "Cosmos Exporter" }
- { ip: "1.1.1.1", port: "59100", comment: "Node Exporter" }
## 3rd party
node_exporter_version: '1.6.1'
cosmos_pruner: 'https://github.com/b-harvest/cosmos-pruner'
full:
hosts:
s1:
ansible_host: 1.1.1.1
public_host: "{{ ansible_host }}"
enable_firewall: false
enable_ipv6: false