Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.52 KB

File metadata and controls

42 lines (33 loc) · 1.52 KB

Exercise3: Make and Try continuous deployment and Infrastructure as code

Goal

  • Understand the concept of Continuous Deployment and Infrastructure as code(Terraform)

Preparation

  • You need to set up a lab environment (Google Cloud and GitHub) to proceed with this exercise

Current State

Exercises procedure

  • Modify Go code and see automatic deployment
  • Add configuration via Terraform
  • (optional) read code

Exercises Procedure

1. Modify Go code and see automatic deployment

2. Add configuration via Terraform

resource "google_service_account" "test" {
  account_id = "service-account-id"
}

3. (optional) read code

  • Understand what happens from the source codes