Skip to content

Commit 278213a

Browse files
author
Sami Koskivaara
committed
Fix typos
1 parent 642a4fa commit 278213a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ There are number of switches defined in the module, where you can use to enable
7676
### Main Feature Switches
7777

7878
- You can use `is_windows_image = "true"` to set the customization type to Windows (By default it is set to Linux customization)
79-
- You can use `data_disk_size_gb = [20,30]` to add additional data disks (SupPorted in both Linux and Windows deployment)
79+
- You can use `data_disk_size_gb = [20,30]` to add additional data disks (Supported in both Linux and Windows deployment)
8080
- Above switch will create two additional disk of capacity 10 and 30gb for the VM.
8181
- You can include `thin_provisioned` switch to define disk type for each additional disk.
8282
- You can use `windomain = "somedomain.com"` to join a windows server to AD domain.

examples/linux/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ module "example-server-linuxvm-withdatadisk" {
5050
memory_hot_add_enabled = "true"
5151
vmname = "AdvancedVM"
5252
vmdomain = "somedomain.com"
53-
network_cards = ["VM Network", "test-netwrok"]
53+
network_cards = ["VM Network", "test-network"]
5454
ipv4submask = ["24", "8"]
5555
ipv4 = {
5656
"VM Network" = ["192.168.0.4", ""] // Here the first instance will use Static Ip and Second set to DHCP

examples/linux/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module "example-server-linuxvm-advanced" {
3030
memory_hot_add_enabled = "true"
3131
vmname = "AdvancedVM"
3232
vmdomain = "somedomain.com"
33-
network_cards = ["VM Network", "test-netwrok"]
33+
network_cards = ["VM Network", "test-network"]
3434
ipv4submask = ["24", "8"]
3535
ipv4 = {
3636
"VM Network" = ["192.168.0.4", ""] // Here the first instance will use Static Ip and Second set to DHCP

0 commit comments

Comments
 (0)