Diese Webseite funktioniert besser mit JavaScript.
Startseite
Erkunden
Hilfe
Registrieren
Anmelden
askadm
/
ansible.azure.automation
Beobachten
1
Favorisieren
0
Fork
0
Code
Issues
0
Pull-Requests
0
Releases
0
Wiki
Aktivität
Quellcode durchsuchen
Add playbook to manage some azure resources
master
jdongmo
vor 4 Jahren
Ursprung
f5faadc302
Commit
61afb7f682
10 geänderte Dateien
mit
80 neuen
und
0 gelöschten
Zeilen
Geteilte Ansicht
Diff-Optionen
Statistiken anzeigen
Patch-Datei herunterladen
Vergleichs-Datei herunterladen
+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
Datei anzeigen
@@ -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
Datei anzeigen
@@ -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
Datei anzeigen
@@ -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
Datei anzeigen
@@ -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
Datei anzeigen
@@ -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
Datei anzeigen
@@ -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
Datei anzeigen
@@ -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
Datei anzeigen
@@ -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
Datei anzeigen
@@ -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
Datei anzeigen
@@ -0,0 +1,8 @@
---
- name: Manage virtual network gateway
hosts:
- all
gather_facts: no
roles:
- {role: azure_vngw, tags: ["azure", "vngw"]}
...
Verfassen
Vorschau
Laden…
Abbrechen
Speichern