Skip to content

Latest commit

 

History

History
70 lines (46 loc) · 2.92 KB

File metadata and controls

70 lines (46 loc) · 2.92 KB

Infrastructure Automation on DigitalOcean using Terraform

Overview

This section describes the usage of Terraform to provision the DigitalOcean infrastructure.

The Terraform code provided in this repository provisions the following:

All essential aspects are configured via Terraform input variables. In addition, a bootstrapper.tfvars.sample file is provided to get you started quickly.

bootstrapper-infra

Requirements

Using Terraform to Provision Infrastructure on DigitalOcean

Follow the below steps to get started:

  1. Clone this repo and change the directory to infrastructure/terraform

  2. Initialize Terraform backend:

    terraform init
  3. Copy and rename the bootstrapper.tfvars.sample file to bootstrapper.tfvars:

    cp bootstrapper.tfvars.sample bootstrapper.tfvars
  4. Open the bootstrapper.tfvars file and adjust settings according to your needs using a text editor of your choice (preferably with HCL lint support).

  5. Use terraform plan to inspect infra changes before applying:

    terraform plan -var-file=bootstrapper.tfvars -out tf-bootstrapper.out
  6. If you're happy with the changes, issue terraform apply:

    terraform apply "tf-bootstrapper.out"

    If everything goes as planned, you should be able to see all infrastructure components provisioned and configured as stated in the bootstrapper.tfvars input configuration file.

  7. Use doctl to update your Kubernetes context

    # <cluster-id> can be found in the output of the terraform module
    doctl kubernetes cluster kubeconfig save <cluster-id>

Authenticate with DigitalOcean Container Registry

Follow this one-click guide to integrate the registry with the Kubernetes cluster.

Next steps »