├── .devcontainer └── devcontainer.json ├── .gitignore ├── LICENSE ├── README.md ├── db.tf ├── network.tf ├── openai.tf ├── outputs.tf ├── providers.tf ├── resource_group.tf ├── strings.tf ├── terraform.tfvars.sample ├── variables.tf └── webapps.tf /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbug1/LibreChatAzureDeployment/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbug1/LibreChatAzureDeployment/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbug1/LibreChatAzureDeployment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbug1/LibreChatAzureDeployment/HEAD/README.md -------------------------------------------------------------------------------- /db.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbug1/LibreChatAzureDeployment/HEAD/db.tf -------------------------------------------------------------------------------- /network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbug1/LibreChatAzureDeployment/HEAD/network.tf -------------------------------------------------------------------------------- /openai.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbug1/LibreChatAzureDeployment/HEAD/openai.tf -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbug1/LibreChatAzureDeployment/HEAD/outputs.tf -------------------------------------------------------------------------------- /providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbug1/LibreChatAzureDeployment/HEAD/providers.tf -------------------------------------------------------------------------------- /resource_group.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbug1/LibreChatAzureDeployment/HEAD/resource_group.tf -------------------------------------------------------------------------------- /strings.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbug1/LibreChatAzureDeployment/HEAD/strings.tf -------------------------------------------------------------------------------- /terraform.tfvars.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbug1/LibreChatAzureDeployment/HEAD/terraform.tfvars.sample -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbug1/LibreChatAzureDeployment/HEAD/variables.tf -------------------------------------------------------------------------------- /webapps.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunderbug1/LibreChatAzureDeployment/HEAD/webapps.tf --------------------------------------------------------------------------------