Skip to main content
Version: Next

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

PreviousUpNext
Phase 01 - ConfigurationPhase 02 - ExecutionTask 02 - Validate Stage

Version Control

VersionDateAuthorChanges
1.0.02026-03-24Azure Local Cloudnology TeamInitial release