Skip to content

Commit

Permalink
Allow setting EFM user.email and ping.server.ip properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ianvdl authored and vibhorkumar123 committed Apr 30, 2024
1 parent 3b89a2f commit e9cd568
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion roles/setup_efm/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ primary_public_ip: ""
primary_private_ip: ""
input_password: ""
pg_allow_ip_addresses: []
ping_server_ip: "8.8.8.8"
efm_user_email: "[email protected]"

# setting validate_only to true allows you to validate setup on an existing node
# use_validation flag applies to deployment configuration and validation after setup
Expand All @@ -46,7 +48,7 @@ efm_default_parameters:
- {name: db.bin, value: "{{ pg_bin_path }}"}
- {name: db.recovery.dir, value: "{{ pg_data }}"}
- {name: db.data.dir, value: "{{ pg_data }}"}
- {name: user.email, value: "[email protected]"}
- {name: user.email, value: "{{ efm_user_email }}"}
- {name: auto.allow.hosts, value: true}
- {name: stable.nodes.file, value: true}
- {name: local.period, value: "3"}
Expand All @@ -55,6 +57,7 @@ efm_default_parameters:
- {name: remote.timeout, value: "5"}
- {name: node.timeout, value: "5"}
- {name: admin.port, value: "{{ efm_admin_port }}"}
- {name: ping.server.ip, value: "{{ ping_server_ip }}"}

efm_physical_slot_param:
- {name: update.physical.slots.period, value: "5"}
Expand Down

0 comments on commit e9cd568

Please sign in to comment.