Last active
November 12, 2018 18:39
-
-
Save jwkidd3/3ca1a9a2601c65cedc1503c1efb00600 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Create VM | |
hosts: localhost | |
connection: local | |
tasks: | |
- name: Create resource group | |
azure_rm_resourcegroup: | |
name: thegroup | |
location: southcentralus | |
- name: Create virtual network | |
azure_rm_virtualnetwork: | |
resource_group: thegroup | |
name: myVnet | |
address_prefixes: "10.0.0.0/16" | |
- name: Add subnet | |
azure_rm_subnet: | |
resource_group: thegroup | |
name: mySubnet | |
address_prefix: "10.0.1.0/24" | |
virtual_network: myVnet | |
- name: Create public IP address | |
azure_rm_publicipaddress: | |
resource_group: thegroup | |
allocation_method: Static | |
name: myPublicIP | |
register: output_ip_address | |
- name: Output public IP | |
debug: | |
msg: "Public IP is {{ output_ip_address.state.ip_address }}." | |
- name: Create Network Security Group that allows SSH | |
azure_rm_securitygroup: | |
resource_group: thegroup | |
name: thensggroup | |
rules: | |
- name: SSH | |
protocol: Tcp | |
destination_port_range: 22 | |
access: Allow | |
priority: 1001 | |
direction: Inbound | |
- name: Create virtual network inteface card | |
azure_rm_networkinterface: | |
resource_group: thegroup | |
name: thenic | |
virtual_network: thevnet | |
subnet: mySubnet | |
public_ip_name: myPublicIP | |
security_group: myNetworkSecurityGroup | |
- name: Create VM | |
azure_rm_virtualmachine: | |
resource_group: myResourceGroup | |
name: myVM | |
vm_size: Standard_DS1_v2 | |
admin_username: azureuser | |
ssh_password_enabled: false | |
ssh_public_keys: | |
- path: /home/azureuser/.ssh/authorized_keys | |
key_data: <your-key-data> | |
network_interfaces: myNIC | |
image: | |
offer: UbuntuServer | |
publisher: Canonical | |
sku: '16.04' | |
version: latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment