Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Misc typo fixes #698

Merged
merged 1 commit into from
Nov 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/modules/azure_rm_publicipaddress.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
allocation_method:
description:
- Control whether the assigned Public IP remains permanently assigned to the object.
- If not set to C(Static), the IP address my changed anytime an associated virtual machine is power cycled.
- If not set to C(Static), the IP address may changed anytime an associated virtual machine is power cycled.
choices:
- dynamic
- static
Expand Down
10 changes: 5 additions & 5 deletions plugins/modules/azure_rm_virtualmachine.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@
admin_username: "{{ username }}"
ssh_public_keys:
- path: /home/adminUser/.ssh/authorized_keys
key_data: < insert yor ssh public key here... >
key_data: < insert your ssh public key here... >
network_interfaces: testvm001
image:
offer: CentOS
Expand All @@ -458,7 +458,7 @@
admin_username: "{{ username }}"
ssh_public_keys:
- path: /home/adminUser/.ssh/authorized_keys
key_data: < insert yor ssh public key here... >
key_data: < insert your ssh public key here... >
image:
offer: CoreOS
publisher: CoreOS
Expand All @@ -480,7 +480,7 @@
ssh_password_enabled: false
ssh_public_keys:
- path: /home/adminUser/.ssh/authorized_keys
key_data: < insert yor ssh public key here... >
key_data: < insert your ssh public key here... >
network_interfaces: testvm001
storage_container: osdisk
storage_blob: osdisk.vhd
Expand Down Expand Up @@ -531,7 +531,7 @@
image:
id: '{{image_id}}'

- name: Create VM with spcified OS disk size
- name: Create a VM with spcified OS disk size
azure_rm_virtualmachine:
resource_group: myResourceGroup
name: big-os-disk
Expand All @@ -544,7 +544,7 @@
sku: '7.1'
version: latest

- name: Create VM with OS and Plan, accepting the terms
- name: Create a VM with OS and Plan, accepting the terms
azure_rm_virtualmachine:
resource_group: myResourceGroup
name: f5-nva
Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/azure_rm_virtualmachinescaleset.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@
ssh_password_enabled: false
ssh_public_keys:
- path: /home/adminUser/.ssh/authorized_keys
key_data: < insert yor ssh public key here... >
key_data: < insert your ssh public key here... >
managed_disk_type: Standard_LRS
image:
offer: CoreOS
Expand All @@ -315,7 +315,7 @@
ssh_password_enabled: false
ssh_public_keys:
- path: /home/adminUser/.ssh/authorized_keys
key_data: < insert yor ssh public key here... >
key_data: < insert your ssh public key here... >
managed_disk_type: Standard_LRS
image:
offer: cis-ubuntu-linux-1804-l1
Expand Down