Skip to content

Commit

Permalink
Merge pull request #3567 from jomeier/azure-page-blob
Browse files Browse the repository at this point in the history
[Azure] Change block blob to page blob
  • Loading branch information
openshift-merge-robot committed Jun 10, 2020
2 parents b9c94af + d50cdbc commit 9cb1aa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/data/azure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ resource "azurerm_storage_blob" "rhcos_image" {
name = "rhcos${random_string.storage_suffix.result}.vhd"
storage_account_name = azurerm_storage_account.cluster.name
storage_container_name = azurerm_storage_container.vhd.name
type = "Block"
type = "Page"
source_uri = var.azure_image_url
metadata = map("source_uri", var.azure_image_url)
}
Expand Down

0 comments on commit 9cb1aa2

Please sign in to comment.