- Add comprehensive naming convention (provider-region-resource-env-purpose) - Implement Terraform locals for centralized naming - Update all Terraform resources to use new naming convention - Create deployment automation framework (18 phase scripts) - Add Azure setup scripts (provider registration, quota checks) - Update deployment scripts config with naming functions - Create complete deployment documentation (guide, steps, quick reference) - Add frontend portal implementations (public and internal) - Add UI component library (18 components) - Enhance Entra VerifiedID integration with file utilities - Add API client package for all services - Create comprehensive documentation (naming, deployment, next steps) Infrastructure: - Resource groups, storage accounts with new naming - Terraform configuration updates - Outputs with naming convention examples Deployment: - Automated deployment scripts for all 15 phases - State management and logging - Error handling and validation Documentation: - Naming convention guide and implementation summary - Complete deployment guide (296 steps) - Next steps and quick start guides - Azure prerequisites and setup completion docs Note: ESLint warnings present - will be addressed in follow-up commit
25 lines
620 B
HCL
25 lines
620 B
HCL
# Resource Groups for The Order
|
|
# Creates resource groups for each environment
|
|
# Naming: az-we-rg-dev-main (provider-region-resource-env-purpose)
|
|
|
|
resource "azurerm_resource_group" "main" {
|
|
name = local.rg_name
|
|
location = var.azure_region
|
|
|
|
tags = merge(local.common_tags, {
|
|
Purpose = "Main"
|
|
})
|
|
}
|
|
|
|
# Resource group for Terraform state (if using remote backend)
|
|
resource "azurerm_resource_group" "terraform_state" {
|
|
count = var.create_terraform_state_rg ? 1 : 0
|
|
name = local.rg_state_name
|
|
location = var.azure_region
|
|
|
|
tags = merge(local.common_tags, {
|
|
Purpose = "TerraformState"
|
|
})
|
|
}
|
|
|