Skip to content
This repository has been archived by the owner on Jun 22, 2021. It is now read-only.

Commit

Permalink
adding support to terraform v0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
kumarvit committed Sep 21, 2020
1 parent 379437f commit a0c27d7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ module "virtual-machine" {
windows_distribution_name = "windows2019dc"
virtual_machine_size = "Standard_A2_v2"
admin_username = "azureadmin"
admin_password = "complex_password"
admin_password = "P@$$w0rd1234!"
instances_count = 2
enable_vm_availability_set = true
enable_public_ip_address = true
Expand Down Expand Up @@ -166,7 +166,7 @@ module "virtual-machine" {
windows_distribution_name = "mssql2017std"
virtual_machine_size = "Standard_A2_v2"
admin_username = "azureadmin"
admin_password = "complex_password"
admin_password = "P@$$w0rd1234!"
instances_count = 2
enable_vm_availability_set = true
Expand Down
2 changes: 1 addition & 1 deletion examples/mssql_windows_virtual_machine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module "virtual-machine" {
windows_distribution_name = "mssql2017std"
virtual_machine_size = "Standard_A2_v2"
admin_username = "azureadmin"
admin_password = "complex_password"
admin_password = "P@$$w0rd1234!"
instances_count = 2
enable_vm_availability_set = true
Expand Down
2 changes: 1 addition & 1 deletion examples/mssql_windows_virtual_machine/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module "virtual-machine" {
windows_distribution_name = "mssql2017std"
virtual_machine_size = "Standard_A2_v2"
admin_username = "azureadmin"
admin_password = "complex_password"
admin_password = "P@$$w0rd1234!"
instances_count = 2
enable_vm_availability_set = true

Expand Down
2 changes: 1 addition & 1 deletion examples/windows_virtual_machine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module "virtual-machine" {
windows_distribution_name = "windows2019dc"
virtual_machine_size = "Standard_A2_v2"
admin_username = "azureadmin"
admin_password = "complex_password"
admin_password = "P@$$w0rd1234!"
instances_count = 2
enable_vm_availability_set = true
enable_public_ip_address = true
Expand Down
2 changes: 1 addition & 1 deletion examples/windows_virtual_machine/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module "virtual-machine" {
windows_distribution_name = "windows2019dc"
virtual_machine_size = "Standard_A2_v2"
admin_username = "azureadmin"
admin_password = "complex_password"
admin_password = "P@$$w0rd1234!"
instances_count = 2
enable_vm_availability_set = true
enable_public_ip_address = true
Expand Down

0 comments on commit a0c27d7

Please sign in to comment.