Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created January 24, 2023 01:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xximjasonxx/89054cba4e2365d410b4690a1e9132e4 to your computer and use it in GitHub Desktop.
Save xximjasonxx/89054cba4e2365d410b4690a1e9132e4 to your computer and use it in GitHub Desktop.
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