Skip to content

Commit 1139a5c

Browse files
authored
Merge pull request #8 from kumarvna/develop
adding terraform v0.15 support
2 parents 95d8f61 + 4d80aac commit 1139a5c

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module "vmscaleset" {
3030
3131
# (Optional) To enable Azure Monitoring and install log analytics agents
3232
log_analytics_workspace_name = var.log_analytics_workspace_name
33-
storage_account_name = var. storage_account_name
33+
storage_account_name = var. storage_account_name
3434
3535
# Deploy log analytics agents to virtual machine. Log analytics workspace name required.
3636
# Defaults to `false`

examples/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module "vmscaleset" {
2323
2424
# (Optional) To enable Azure Monitoring and install log analytics agents
2525
log_analytics_workspace_name = var.log_analytics_workspace_name
26-
hub_storage_account_name = var.hub_storage_account_name
26+
storage_account_name = var.storage_account_name
2727
2828
# Deploy log analytics agents to virtual machine. Log analytics workspace name required.
2929
# Defaults to `false`
@@ -108,7 +108,7 @@ module "vmscaleset" {
108108
109109
# (Optional) To enable Azure Monitoring and install log analytics agents
110110
log_analytics_workspace_name = var.log_analytics_workspace_name
111-
hub_storage_account_name = var.hub_storage_account_name
111+
storage_account_name = var.storage_account_name
112112
113113
# Deploy log analytics agents to virtual machine. Log analytics workspace name required.
114114
# Defaults to `false`

examples/linux_vm_scale_sets/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module "vmscaleset" {
1717
1818
# (Optional) To enable Azure Monitoring and install log analytics agents
1919
log_analytics_workspace_name = var.log_analytics_workspace_name
20-
hub_storage_account_name = var.hub_storage_account_name
20+
storage_account_name = var.storage_account_name
2121
2222
# Deploy log analytics agents to virtual machine. Log analytics workspace name required.
2323
# Defaults to `false`

examples/linux_vm_scale_sets/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module "vmscaleset" {
1010

1111
# (Optional) To enable Azure Monitoring and install log analytics agents
1212
log_analytics_workspace_name = var.log_analytics_workspace_name
13-
hub_storage_account_name = var.hub_storage_account_name
13+
storage_account_name = var.storage_account_name
1414

1515
# Deploy log analytics agents to virtual machine. Log analytics workspace name required.
1616
# Defaults to `false`

examples/linux_vm_scale_sets/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
variable "hub_storage_account_name" {
1+
variable "storage_account_name" {
22
description = "The id of hub storage id for logs storage"
33
default = null
44
}

examples/windows_vm_scale_sets/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module "vmscaleset" {
1818
1919
# (Optional) To enable Azure Monitoring and install log analytics agents
2020
log_analytics_workspace_name = var.log_analytics_workspace_name
21-
hub_storage_account_name = var.hub_storage_account_name
21+
storage_account_name = var.storage_account_name
2222
2323
# Deploy log analytics agents to virtual machine. Log analytics workspace name required.
2424
# Defaults to `false`

examples/windows_vm_scale_sets/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module "vmscaleset" {
1111

1212
# (Optional) To enable Azure Monitoring and install log analytics agents
1313
log_analytics_workspace_name = var.log_analytics_workspace_name
14-
hub_storage_account_name = var.hub_storage_account_name
14+
storage_account_name = var.storage_account_name
1515

1616
# Deploy log analytics agents to virtual machine. Log analytics workspace name required.
1717
# Defaults to `false`

examples/windows_vm_scale_sets/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
variable "hub_storage_account_name" {
1+
variable "storage_account_name" {
22
description = "The id of hub storage id for logs storage"
33
default = null
44
}

0 commit comments

Comments
 (0)