Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Registrati
Accedi
askadm
/
ansible.azure.automation
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Add playbook to manage some azure resources
master
jdongmo
4 anni fa
parent
f5faadc302
commit
61afb7f682
10 ha cambiato i file
con
80 aggiunte
e
0 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+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
Vedi File
@@ -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
Vedi File
@@ -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
Vedi File
@@ -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
Vedi File
@@ -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
Vedi File
@@ -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
Vedi File
@@ -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
Vedi File
@@ -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
Vedi File
@@ -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
Vedi File
@@ -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
Vedi File
@@ -0,0 +1,8 @@
---
- name: Manage virtual network gateway
hosts:
- all
gather_facts: no
roles:
- {role: azure_vngw, tags: ["azure", "vngw"]}
...
Scrivi
Anteprima
Caricamento…
Annulla
Salva