sontek.net

  • Home
  • Blog
  • Resume
  • About
  • AWS From Scratch with Terraform - Apply before Merge with Github Actions


    April 2, 2023

    The two most popular workflows when using terraform are:

    • Apply after Merge: This is the default for things like terraform cloud and most github actions.

    • Apply before Merge: This is the default for things like Atlantis.

    I don't like ...

  • AWS From Scratch with Terraform - Setting up your Root Account for IaC (using Terraform Cloud)


    April 1, 2023

    Following this article will get you setup with an AWS Root account that can be managed through through Terraform Cloud with OIDC. As a best practice you should not keep long-lived access keys in your CI/CD pipelines when deploying to AWS, instead you should use OIDC (OpenID Connect) to securely deploy to AWS when using Terraform Cloud or Github Actions.

    TL;DR

    Download all the so...