104 switch to daisyui (#106)

* adding daisyui

* adding daisy ui

* switching to daisy ui

* switching to daisy ui

* adding daisy ui

* adding daisy ui
This commit was merged in pull request #106.
This commit is contained in:
2025-12-29 19:43:27 -06:00
committed by GitHub
parent 64c94ca9f4
commit f041e0e1ba
41 changed files with 1024 additions and 4286 deletions

View File

@@ -74,6 +74,16 @@ resource "azurerm_container_app" "container_app" {
secret_name = "azure-storage-connection-string"
}
env {
name = "AUTHORITY"
value = var.AUTHORITY
}
env {
name = "AUDIENCE"
value = var.CLIENT_ID
}
env {
name = "CLIENT_ID"
value = var.CLIENT_ID
@@ -84,6 +94,16 @@ resource "azurerm_container_app" "container_app" {
secret_name = "client-secret"
}
env {
name = "ISSUER_URL"
value = var.ISSUER_URL
}
env {
name = "JWKS_URI"
value = var.JWKS_URI
}
env {
name = "TENANT_ID"
value = var.EXTERNAL_TENANT_ID

View File

@@ -1,3 +1,6 @@
variable "AUTHORITY" {
type = string
}
variable "CLIENT_ID" {
type = string
@@ -17,6 +20,14 @@ variable "DOCKER_IO_USERNAME" {
type = string
}
variable "ISSUER_URL" {
type = string
}
variable "JWKS_URI" {
type = string
}
variable "RESOURCE_GROUP_NAME" {
type = string
}