adding static web to storage account

This commit is contained in:
2025-04-18 15:19:29 -05:00
parent b0d43ee51a
commit 8de2d0275f
2 changed files with 15 additions and 0 deletions

View File

@@ -12,6 +12,13 @@ variable "resource_group_name" {
type = string
}
variable "static_websites" {
default = []
type = list(object({
index_document = string
}))
}
variable "storage_account_name" {
type = string
}