Task 01: Commit and Push Configuration
Objective: Commit configuration changes and push to the repository to trigger CI/CD pipeline
Procedure
1. Review Changes
cd /path/to/project
git status
git diff terraform.tfvars
2. Stage Changes
git add terraform.tfvars
git add terraform/ # If using separate terraform directory
3. Commit with Descriptive Message
git commit -m "Deploy Phase 04 management infrastructure
- Configure management mode with VNet 10.100.1.0/24
- Configure cluster c01 at RAL location
- Deploy VPN Gateway VpnGw2AZ with BGP
- Enable Azure Bastion and Key Vault
"
4. Push to Repository
git push origin main
Pipeline will automatically trigger on push.
Validation
- Git commit successful
- Changes pushed to repository
- Pipeline automatically started in CI/CD pipeline → Pipelines
Navigation
| Previous | Up | Next |
|---|---|---|
| Phase 01 - Configuration | Phase 02 - Execution | Task 02 - Validate Stage |
Version Control
| Version | Date | Author | Changes |
|---|---|---|---|
| 1.0.0 | 2026-03-24 | Azure Local Cloudnology Team | Initial release |