Development Environment
Use VSCode as your IDE

Development Environment

This lab will use VSCode as the integrated development environment (IDE) to develop Terraform configurations and run the git command, VSCode has been installed on your laptop.

Step 1 - Connect to the DEV server from VSCode

VSCode should have been opened on your labtop. If it is not open, please ask your instructor.

Step 2 - Open the project folder

    
       cd /home/cisco/CiscoLive/DEVWKS-3320
    

Step 3 - Checkout and reset the local stage branch

You should be already in the local stage branch, if not, use the command shown below to checkout and reset to the stage branch:

    
    git checkout -B stage
    
    
    Switched to and reset branch 'stage'
    

Step 4 - Verify the current working branch

    
    git branch --show-current
    
    
    stage
    
  • Introduction
  • NDFC and Terraform
  • Envrionment and Topology
  • Task01 Interface Module
  • Task02 Overlay Module
  • Task03 CI/CD Pipeline
  • Bonus: Policy Module
  • Thanks