Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
panelIconId1f6e0
panelIcon:tools:
panelIconText🛠
bgColor#FFFAE6

This is an advanced topic for platform engineers.

Create a new root module to deploy the Flightdeck platform for the sandbox cluster using the workload platform module.

Code Block
infra/
  platform/
    sandbox-v1

You can copy the configuration for the previous version of the platform, updating the version of Flightdeck.

Code Block
module "platform" {
  # Use the latest version of Flightdeck
  source = "github.com/thoughtbot/flightdeck//aws/platform?ref=UPDATE"

  # Copy configuration from the previous deployment
  cluster_name = data.aws_eks_cluster.this.name
  admin_roles = []
  domain_names = []
}

data "aws_eks_cluster" "this" {
  # Use the name of the cluster you created in the previous step
  name = "mycompany-sandbox-v2"
}

...

Info

The AWS Platform Guide now lives at thoughtbot.com

Visit Deploy the Flightdeck platform to access this page's content