Skip to content

Commit

Permalink
[#142867449] Increase the number of storage accounts from 3 to 5
Browse files Browse the repository at this point in the history
  • Loading branch information
amohemed authored and zachgersh committed Apr 3, 2017
1 parent 1ca013d commit b624e29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions storage.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ resource "azurerm_storage_account" "bosh_vms_storage_account" {
location = "${var.location}"
account_type = "Premium_LRS"

count = 3
count = 5
}

resource "azurerm_storage_container" "bosh_vms_storage_container" {
Expand All @@ -74,7 +74,7 @@ resource "azurerm_storage_container" "bosh_vms_storage_container" {
storage_account_name = "${element(azurerm_storage_account.bosh_vms_storage_account.*.name, count.index)}"
container_access_type = "private"

count = 3
count = 5
}

resource "azurerm_storage_container" "bosh_vms_stemcell_storage_container" {
Expand All @@ -84,7 +84,7 @@ resource "azurerm_storage_container" "bosh_vms_stemcell_storage_container" {
storage_account_name = "${element(azurerm_storage_account.bosh_vms_storage_account.*.name, count.index)}"
container_access_type = "private"

count = 3
count = 5
}

# Storage containers to be used as CF Blobstore
Expand Down

0 comments on commit b624e29

Please sign in to comment.