Deze website werkt beter met JavaScript.
Beginscherm
Verkennen
Help
Registreren
Inloggen
askadm
/
ansible.azure.automation
Volgen
1
Ster
0
Vork
0
Code
Kwesties
0
Pull-aanvragen
0
Publicaties
0
Wiki
Activiteit
Bladeren bron
Add playbook to manage some azure resources
master
jdongmo
4 jaren geleden
bovenliggende
f5faadc302
commit
61afb7f682
10 gewijzigde bestanden
met
toevoegingen van 80
en
0 verwijderingen
Zij-aan-zij weergave
Diff opties
Statistieken weergeven
Download Patch-bestand
Download Diff-bestand
+8
-0
playbook_application_gateway.yml
+8
-0
playbook_backendpool.yml
+8
-0
playbook_local_network_gateway.yml
+8
-0
playbook_managed_disk.yml
+8
-0
playbook_other_resource.yml
+8
-0
playbook_public_ip.yml
+8
-0
playbook_ssh_public_key.yml
+8
-0
playbook_udr.yml
+8
-0
playbook_virtual_machine_extension.yml
+8
-0
playbook_virtual_network_gateway.yml
+ 8
- 0
playbook_application_gateway.yml
Bestand weergeven
@@ -0,0 +1,8 @@
---
- name: Manage application gateway
hosts:
- all
gather_facts: no
roles:
- {role: azure_agw, tags: ["azure", "agw"]}
...
+ 8
- 0
playbook_backendpool.yml
Bestand weergeven
@@ -0,0 +1,8 @@
---
- name: Manage backendpool
hosts:
- all
gather_facts: no
roles:
- {role: azure_bp, tags: ["azure", "bp"]}
...
+ 8
- 0
playbook_local_network_gateway.yml
Bestand weergeven
@@ -0,0 +1,8 @@
---
- name: Manage local network gateway
hosts:
- all
gather_facts: no
roles:
- {role: azure_lngw, tags: ["azure", "lngw"]}
...
+ 8
- 0
playbook_managed_disk.yml
Bestand weergeven
@@ -0,0 +1,8 @@
---
- name: Manage managed disk
hosts:
- all
gather_facts: no
roles:
- {role: azure_disk, tags: ["azure", "disk"]}
...
+ 8
- 0
playbook_other_resource.yml
Bestand weergeven
@@ -0,0 +1,8 @@
---
- name: Manage any resource
hosts:
- all
gather_facts: no
roles:
- {role: azure_res, tags: ["azure", "res"]}
...
+ 8
- 0
playbook_public_ip.yml
Bestand weergeven
@@ -0,0 +1,8 @@
---
- name: Manage public IP
hosts:
- all
gather_facts: no
roles:
- {role: azure_ip, tags: ["azure", "ip"]}
...
+ 8
- 0
playbook_ssh_public_key.yml
Bestand weergeven
@@ -0,0 +1,8 @@
---
- name: Manage ssh public key
hosts:
- all
gather_facts: no
roles:
- {role: azure_spk, tags: ["azure", "spk"]}
...
+ 8
- 0
playbook_udr.yml
Bestand weergeven
@@ -0,0 +1,8 @@
---
- name: Manage user defined route
hosts:
- all
gather_facts: no
roles:
- {role: azure_udr, tags: ["azure", "udr"]}
...
+ 8
- 0
playbook_virtual_machine_extension.yml
Bestand weergeven
@@ -0,0 +1,8 @@
---
- name: Manage virtual machine extension
hosts:
- all
gather_facts: no
roles:
- {role: azure_vmext, tags: ["azure", "vmext"]}
...
+ 8
- 0
playbook_virtual_network_gateway.yml
Bestand weergeven
@@ -0,0 +1,8 @@
---
- name: Manage virtual network gateway
hosts:
- all
gather_facts: no
roles:
- {role: azure_vngw, tags: ["azure", "vngw"]}
...
Schrijf
Voorbeeld
Laden…
Annuleren
Opslaan