Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created January 24, 2023 01:36
Embed
What would you like to do?
terraform {
}
variable storage_account_resource_group_name {
type = string
}
variable storage_account_name {
type = string
}
variable container_name {
type = string
}
resource azurerm_storage_container container {
name = var.container_name
storage_account_name = var.storage_account_name
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment