Skip to content

Commit

Permalink
removing resource_group_name from the storage_container resource
Browse files Browse the repository at this point in the history
  • Loading branch information
tombuildsstuff committed Feb 23, 2020
1 parent ab17926 commit 54b7831
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 10 deletions.
Expand Up @@ -1067,7 +1067,6 @@ resource "azurerm_storage_account" "test" {
resource "azurerm_storage_container" "test" {
name = "vhds"
resource_group_name = "${azurerm_resource_group.test.name}"
storage_account_name = "${azurerm_storage_account.test.name}"
container_access_type = "blob"
}
Expand Down
Expand Up @@ -202,7 +202,6 @@ resource "azurerm_storage_queue" "test" {
resource "azurerm_storage_container" "test" {
name = "vhds"
resource_group_name = "${azurerm_resource_group.test.name}"
storage_account_name = "${azurerm_storage_account.test.name}"
container_access_type = "private"
}
Expand Down Expand Up @@ -263,21 +262,18 @@ resource "azurerm_storage_account" "test" {
resource "azurerm_storage_queue" "test" {
name = "mysamplequeue-%d"
resource_group_name = "${azurerm_resource_group.test.name}"
storage_account_name = "${azurerm_storage_account.test.name}"
}
resource "azurerm_storage_container" "test" {
name = "vhds"
resource_group_name = "${azurerm_resource_group.test.name}"
storage_account_name = "${azurerm_storage_account.test.name}"
container_access_type = "private"
}
resource "azurerm_storage_blob" "test" {
name = "herpderp1.vhd"
resource_group_name = "${azurerm_resource_group.test.name}"
storage_account_name = "${azurerm_storage_account.test.name}"
storage_container_name = "${azurerm_storage_container.test.name}"
Expand Down
Expand Up @@ -684,7 +684,6 @@ resource "azurerm_storage_account" "test" {
resource "azurerm_storage_container" "test" {
name = "bacpac"
resource_group_name = "${azurerm_resource_group.test.name}"
storage_account_name = "${azurerm_storage_account.test.name}"
container_access_type = "private"
}
Expand Down
Expand Up @@ -258,7 +258,6 @@ resource "azurerm_storage_account" "updated" {
resource "azurerm_storage_container" "updated" {
name = "example"
resource_group_name = "${azurerm_resource_group.test.name}"
storage_account_name = "${azurerm_storage_account.updated.name}"
container_access_type = "private"
}
Expand Down Expand Up @@ -318,7 +317,6 @@ resource "azurerm_storage_account" "test" {
resource "azurerm_storage_container" "test" {
name = "example"
resource_group_name = "${azurerm_resource_group.test.name}"
storage_account_name = "${azurerm_storage_account.test.name}"
container_access_type = "private"
}
Expand Down
Expand Up @@ -258,7 +258,6 @@ resource "azurerm_storage_account" "updated" {
resource "azurerm_storage_container" "updated" {
name = "example2"
resource_group_name = "${azurerm_resource_group.test.name}"
storage_account_name = "${azurerm_storage_account.test.name}"
container_access_type = "private"
}
Expand Down
Expand Up @@ -28,7 +28,6 @@ resource "azurerm_storage_account" "example" {
resource "azurerm_storage_container" "example" {
name = "hdinsight"
resource_group_name = azurerm_resource_group.example.name
storage_account_name = azurerm_storage_account.example.name
container_access_type = "private"
}
Expand Down

0 comments on commit 54b7831

Please sign in to comment.