mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-07 01:32:47 +01:00
ensure hypervisor is remove from salt cloud profiles when key is deleted
This commit is contained in:
17
salt/orch/delete_hypervisor.sls
Normal file
17
salt/orch/delete_hypervisor.sls
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{% set hypervisor = pillar.minion_id %}
|
||||||
|
|
||||||
|
ensure_hypervisor_mine_deleted:
|
||||||
|
salt.function:
|
||||||
|
- name: file.remove
|
||||||
|
- tgt: 'G@role:so-manager or G@role:so-managerhype or G@role:so-managersearch or G@role:so-standalone or G@role:so-eval'
|
||||||
|
- tgt_type: compound
|
||||||
|
- arg:
|
||||||
|
- /var/cache/salt/master/minions/{{hypervisor}}
|
||||||
|
|
||||||
|
update_salt_cloud_profile:
|
||||||
|
salt.state:
|
||||||
|
- tgt: 'G@role:so-manager or G@role:so-managerhype or G@role:so-managersearch or G@role:so-standalone or G@role:so-eval'
|
||||||
|
- tgt_type: compound
|
||||||
|
- sls:
|
||||||
|
- salt.cloud.config
|
||||||
|
- concurrent: True
|
||||||
@@ -1,5 +1,19 @@
|
|||||||
{% if data['act'] == 'accept' and data['id'].endswith(('_hypervisor', '_managerhyper')) and data['result'] == True %}
|
{% if data['id'].endswith('_hypervisor') and data['result'] == True %}
|
||||||
|
|
||||||
|
{% if data['act'] == 'accept' %}
|
||||||
check_and_trigger:
|
check_and_trigger:
|
||||||
runner.setup_hypervisor.setup_environment:
|
runner.setup_hypervisor.setup_environment:
|
||||||
- minion_id: {{ data['id'] }}
|
- minion_id: {{ data['id'] }}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if data['act'] == 'delete' %}
|
||||||
|
delete_hypervisor:
|
||||||
|
runner.state.orchestrate:
|
||||||
|
- args:
|
||||||
|
- mods: orch.delete_hypervisor
|
||||||
|
- pillar:
|
||||||
|
minion_id: {{ data['id'] }}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user