This repository implements a secure, scalable, and compliant translation system for financial messaging, supporting both point-to-point and point-to-multi-point flows. It leverages Azure Logic Apps, Azure SQL Databases, Azure Key Vault, and other Azure resources for orchestration, data storage, and security.
- Translation flows: Point-to-point and point-to-multi-point translation for financial messages.
- Database schemas: For GRU M0/M1 balances, exchange rates, and ISO 4217 currency registry.
- Compliance: Supports ICC rules (UCP 600, URDTT), ISO 20022, SWIFT FIN MT, ISO 8583, and JSON-Meta schema for payment/settlement metadata.
- Azure-native: Uses Azure Logic Apps, App Service, SQL Database, Key Vault, Application Insights, and Log Analytics.
- Security: Managed identities, Key Vault for secrets, least-privilege access, and monitoring enabled.
infra/— Bicep and parameter files for Azure infrastructure as code (IaC)logic-apps/translation/— Logic App workflows and related codeazure.yaml— Azure Developer CLI configurationprompts_used.md— Project requirements and design prompts
- Azure CLI
- Azure Developer CLI (azd)
- Azure subscription with sufficient permissions
-
Clone the repository
git clone <this-repo-url> cd ATIATO
-
Review and update parameters
- Edit
infra/main.parameters.json:- Set
environmentNameandlocationas needed. - Fill in
AZURE_STORAGE_CONNECTION_STRING,EXCHANGE_RATE_API_KEY, andsqlAdminPassword(secure value for SQL admin).
- Set
- Edit
-
Authenticate with Azure
az login azd auth login
-
Deploy infrastructure
azd up
This will provision all required Azure resources as defined in
infra/main.bicep.
- Azure App Service: Hosts custom APIs and integrates with Logic Apps
- Azure Logic Apps: Orchestrates translation and routing flows
- Azure SQL Databases: Stores balances, exchange rates, and currency registry
- Azure Key Vault: Manages secrets and connection strings
- Application Insights: Monitoring and diagnostics
- Log Analytics Workspace: Centralized logging
- GRU M0/M1 balances: For account and monetary tracking
- Exchange rates: Multi-currency and historical rates
- ISO 4217 currency registry: Currency codes, names, and minor units
- ICC rules: UCP 600, URDTT
- ISO 20022: pain.001, pacs.008, etc.
- SWIFT FIN MT: MT 103, MT 202
- ISO 8583: Card-based transactions (if needed)
- JSON-Meta schema: For payment/settlement metadata
- All secrets are managed in Azure Key Vault
- Managed identities for secure resource access
- Monitoring via Application Insights and Log Analytics
- SQL firewall rules are set to the most restrictive by default
- No credentials are hardcoded; use Key Vault for all secrets
- Implement Logic App workflows in
logic-apps/translation/ - Extend or modify Bicep files in
infra/for additional Azure resources - Update
azure.yamlto reflect new services or dependencies
- Ensure all required Azure tools are installed (
az,azd) - Check deployment logs for errors during
azd up - Validate parameter values in
main.parameters.json - Use Azure Portal for resource diagnostics and monitoring
- Implement database schemas and seed reference data
- Build and deploy Logic Apps workflows
- Integrate APIs and message mapping logic
- Test end-to-end translation flows
- System Documentation
- Workflows & Diagrams
- Infrastructure
- Modules
- Automation Scripts
- Standards & Regulations
- Contributing Guidelines
For questions or support, please open an issue in this repository.