diff options
| author | 2025-08-03 20:32:17 +0700 | |
|---|---|---|
| committer | 2025-08-03 20:32:17 +0700 | |
| commit | 00a52ed9b4632bab2c80aab5c5a96754ad0778c5 (patch) | |
| tree | 7a552e68a2af40128b643b25f74c34daafc4f347 /deploy/inventory.yml | |
| parent | 867cf5bef531ee4caea127cd0663dd307ee869a6 (diff) | |
| download | web-00a52ed9b4632bab2c80aab5c5a96754ad0778c5.tar.gz web-00a52ed9b4632bab2c80aab5c5a96754ad0778c5.zip | |
fix(ansible): use correct format for var names0.3.5
Diffstat (limited to 'deploy/inventory.yml')
| -rw-r--r-- | deploy/inventory.yml | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/deploy/inventory.yml b/deploy/inventory.yml index 5c88365..3c1220d 100644 --- a/deploy/inventory.yml +++ b/deploy/inventory.yml @@ -3,15 +3,13 @@ all: prod: hosts: pl.saya.today: - saya_today_web: - name: sayana-web - hostname: sayana-web - ipv4_address: 172.16.0.18 + saya_today_web_name: sayana-web + saya_today_web_hostname: sayana-web + saya_today_web_ipv4_address: 172.16.0.18 stage: hosts: pl.saya.today: - saya_today_web: - name: sayana-demo - hostname: sayana-demo - ipv4_address: 172.16.0.17 + saya_today_web_name: sayana-demo + saya_today_web_hostname: sayana-demo + saya_today_web_ipv4_address: 172.16.0.17 |