first commit

This commit is contained in:
root
2024-07-12 12:58:40 +02:00
commit 30fdad3be5
557 changed files with 11142 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
---
# tasks file for azure_create-vnet
- name: Create virtual network
azure_rm_virtualnetwork:
resource_group: "{{RG_name}}"
name: vNet
address_prefixes: "10.0.0.0/16"
- name: Add subnet
azure_rm_subnet:
resource_group: "{{RG_name}}"
name: subnet
address_prefix: "10.0.1.0/24"
virtual_network: vNet