updating modules

This commit is contained in:
2025-08-23 09:22:51 -05:00
parent 597dd42da6
commit cbb8b677cf
9 changed files with 88 additions and 15 deletions

View File

@@ -0,0 +1,2 @@
data "azurerm_client_config" "current" {
}

View File

@@ -0,0 +1,8 @@
resource "azurerm_container_app_environment_storage" "container_app_environment_storage" {
name = var.name
container_app_environment_id = var.container_app_environment_id
account_name = var.storage_account_name
share_name = var.share_name
access_key = var.storage_account_access_key
access_mode = var.access_mode
}

View File

@@ -0,0 +1,23 @@
variable "access_mode" {
type = string
}
variable "container_app_environment_id" {
type = string
}
variable "name" {
type = string
}
variable "share_name" {
type = string
}
variable "storage_account_access_key" {
type = string
}
variable "storage_account_name" {
type = string
}