Curated Q&As from 'Getting Started with Terraform Pipelines'
Today, I had the pleasure of being the speaker for my very first ThoughtWorks meetup. The topic was “Getting started with Terraform Pipelines” and due to the current (Corona) situation it was an online-only event. You can find the slides here: https://github.com/michaellihs/meetup-2020-05-07-terraform-pipelines/blob/master/presentation.pdf. You can find a recording of the meetup in this link.
This post is a (curated) summary of the questions and answers that were written in the chat, since I think they contain a lot of things to be learned about Terraform and infrastructure as code.
Will you be doomed if state gets somehow lost? Can you recover from a state loss?
- you should store your state in a high durability place, such as S3
- you are not exactly doomed, but close enough - terraform import can help
- Terraform gives the possibility to import existing ressources into a state
- But there is no way to import all resources yet, it is per resource (at least last I checked)
- not every resource can be imported
- You should take care of import. If the provider is implemented badly it won’t help you very much
- you can import existing infrastructure into a state
- You should backup your state file aswell :-) maybe work with snapshots before/after apply
- the state in the end is a JSON File. If everything else fails, things can fixed by editing the file and reuploading it, although this is a recipe for pain
Does terraform give a graphical representation of the infra getting created like for e.g cloud formation designer provides?
- This blog post contains a tool that generates a graph from your Terraform infrastructure
What happens if resorces were changed outside terraform?
- Terraform will change them back to what is described in the configuration
- Sometimes this means destroying and re-creating a resource
Followup question: What if your state loss happens because a state apply failed and you have an intermediate state? When a state apply fails because AWS rejects the request?
- terraform usually stores backup file while apply
Do you persist the state then?
- the state needs to be persisted in any case. Because if you don’t two different people applying terraform code would recreate resources
On which service does terraform run on?
- Important to mention it doesn’t run all the time - it’s not a service or something. It is a simple binary that can be run on any command line, e.g. run in a pipeline, makes changes and exits
- like this, you can easily run it in any pipeline on any CI/CD server
Is there a possibility to snapshot tf-state in a storage-account?
- for Azure: generally yes, see this documentation
- for Azure, there seems to be an open GitHub issue for this
- Recommendation for state version is to enable it on the remote storage, e.g. S3 supports versioning of files
- terraform cloud is free for state storage as well
- usage of Terraform cloud might be dependent on the privacy policies of your company / client though
How do changes to resources, which were triggered manually, affect the terraform state?
- if the resource was manually created, it is not represented in the Terraform state at all
- if it was created by Terraform and then manually changed, the next Terraform apply will bring it back to the automatically created state
Which systems (providers) are supported by Terraform
- These are the supported systems that Terraform can configure: https://www.terraform.io/docs/providers/index.html
tdd is kinda impossible with terraform
- terratest is ok to use, but doesn’t help much in tdd
- It depends on how you consider TDD, my team have written tests and then written the terraform to deploy working code to make the tests go green - this is out of scope of this talk but we have run talks on infra testing before and will again
Terraform vs. Pulumi - which is gaining more traction these days?
- terraform has a bigger offering of providers, pulumi is in very active development as well
- pulumi is gaining traction
- if you are starting from scratch I would encourage to check both and see which one fits your use case better
- My team have focused on Terraform as it’s a common language and tool set to work with Github, K8S and AWS
What does “Go for immutable infra” mean exactly? Other than a DB
- a DB is the opposite of an immutable piece of infrastructure, since it mutates over time
- immutable infra would be deploying infrastructure that is not changed until the next deployment. For instance, all the networking is based on the TF code reflecting the end state.
- another example would be a serverless function or a container. You don’t update or patch it in place, you just replace it every time with a completely new instance when it gets deployed
What does it mean to split state? Is this an outcome of infra modularity?
- splitting state means that you have different state files for different parts of your infrastructure
- e.g. this can mean that you have a different state file for each environment (DEV, TEST, PROD) or even for each service’s infrastructure
- messing up state in a DEV environment does not effect PROD
should we split state for each environment?
- YES
Where do you run terraform code, in azure devops, azure container or azure shell, or local laptop?
- basically you can run it from every place that can run a go binary
- For my team we run all terraform code in pipeline only, we do not run terraform locally at all and have not creds to do so. My team make an active choice to do this. Our CI is GoCD running in K8S containers
Is the concept of pipelines and stages applicable with other tools than Terraforn? E.g. with Ansible?
- yes, though the declarative nature of terraform tends to make describing the end state a bit easier
- Ansible makes much more use of patching resources or configuration in place
- This makes staging in general rather hard
It looks like your terraform code for many services is all in a single “infra” repo - was there any intentional decision to do this instead of putting the terraform scripts alongside the service code inside each services repository? What drove that decision?
- we had infrastructure in place that we needed to preserve. Starting with what we had and refactoring in small steps seemed like a good approach.
- Generally you should split your infrastructure in smaller junks and test and apply them seperately
- Still seperation can raise new issues, like dependencies and remote references
do you use atlantis?
- We’ve just started using Atlantis - it’s nice :D
- Not yet, we are considering it in the future
Do you use HachiCorp Vault for secrets or some parts of CI server for secrets?
- Currently we are using K8S “secrets” we will be moving to AWS secrets store “soon” and then in a while we will be standing up vault
- We are using the Azure keyvaults, but only use it for deployments, not for runtime, since it seems to be too slow for “real time access”
What’s the best place to version control infrastructure code, in repo with application code or in separate repo?
- I think the answer is “it depends” and it also depends how tightly linked your code and infra are
Did you discuss splitting state even more, e.g. one statefile per service? Why did you decide against it?
- we considered to do so, but agreed against as a first step, mainly to keep things simple and to have an easy orchestration of our bootstrapping process
monorepo vs micro repos with code?
- see above: it depends on the use case
- as a rule of thumb: smaller is better
Do you use tools like test terratest, kitchen-terraform, validate? or some part of GoCD can help with testing?
- My team currently tests with tflint and terraform validate, we have additional in pipeline tests to ensure resources are available and configured correctly.
- We are also looking at awsspec for testing
Is there anyone who experienced with Jenkins for CI pipeline? How good is Jenkins about Terraform CI pipelining?
- works good
- any CI tool can be used to be honest, though I’ve seen many centralized jenkins instances that are exceedingly hard to use
I see a lot of azure specific configuration? I was expecting something more platform independent so you can describe the state independent of where it is applied (Azure, AWS, etc)?
- the examples were taken from Azure, since I am currently working with it
- you cannot use Terraform to abstract the cloud provider API and it would make no sense, since the cloud resources strongly vary from provider to provider
- Terraform scripts are always cloud specific
Have you looked at terragrunt at all? It can handle splitting and templating of environments. Well worth a look if it fits your needs
- +1 to terragrunt, can be used effectively to address some terraform pain points
- Terragrunt is something that we are looking at next week to fix some of the pain of copy pasted variables
- I think terragrunt will be obsolete in some time as tf adds those teatures
Why not to split states down to each independent servece?
- Why not split to each service: There are tons of interdependencies you can create between services and passing variables back and fourth becomes a PITA
- My team uses both terraform data calls and terraform remote_state as data sources to pass information between small pieces of terraform code
how “cloud specific” is the resulting terraform code? I’m asking since my team might have to e.g. provision k8s and other services on multiple cloud service providers.
- very specific, since resources change by clouds
- The k8s terraform will apply to most versions of k8s, but different cloud providers provide different resources as Ashish says
- The concepts however are always the same, resources / data objects same templating engine etc
- If you want to create a kubernetes cluster, just take a look at the differences between the terraform resource “azurerm_kubenretes_cluster” and “google_container_cluster” … you have to handle ALL those differences yourself
did you setup the pipeline(s) for terraform right away or after your infra reached a certain state?
- My team went straight to pipeline never ran it locally. But we where starting with a Greenfield setup and we had the opportunity to make a clear choice of pipelines only
- We have sometimes needed to do interactive terraform but only a few times in the last 6 months. We do this from the CI/CDs agents
- We actually tag all our infra with the unique pipeline ID as well so we can trace AWS -> pipeline -> code
Where/how do you publish the various terraform packages? Is it just pushing a docker image to a registry every time?
- For modules, you can run a terraform registry or just use git but we are not at this stage yet
- when it comes to the Azure DevOps pipelines, you can use the pipeline artifacts to store the packages. But those are not (only) modules, but also binaries, scripts and Terraform plans
How do you build the pipeline itself? Also with terraform?
- We actually use yaml to define them in git and then have good sutopull them
- There is a GoCD terraform provider but it’s a little trickier to automate for us
- We’ve actually created AWS CodePipelines with Terraform, which then later runs Terraform.. works
- we build pipelines with terraform using aws codepipeline and codebuild
- Currently the Azure DevOps Terraform provider is being developed. So for the moment it is not stable and a lot of resources within Azure DevOps unfortunately can’t be terraformed.
Can we elaborate more on why “the download terraform package” is needed in every stage?
- In Gitlab CI/CD you can use “artifacts” to store the package…
- we do this, since many modern CI servers have stateless stages. This means that if you want to pass anything in between stages, you have to persist it to some external storage on the producing stage and then restore it again on the consuming stage.
What if the “test” stage in prod fails?
- That’s an interesting question Steffen, and your team should decide if it’s an alert etc
- we don’t have any automated rollback in place and it might be hard to achieve with infrastructure code
When automating terraform plan/apply in a pipeline (no manual approval), do you put any restrictions on? (i.e. don’t automatically apply if there are any destroy’s in the plan)
- since we went with a gated approach, we don’t do this
- using locks might be a step in this direction
Are you running the pipeline from non-master branches? If, what happens there?
- We always run from master
- At ThoughtWorks, we have a strong opinion on branches and mostly go for trunk-based development
do you run azure rm templates from teraform/terragrunt?
- sorry, I have no ideas what this is
- so there is a way to provision resources via powershell modules/integration with UI via Azure resource templates (similar to cloudformation on AWS), when you develope infrastrcuture with teraform you are not always have chnages from Azure in modules
How do you know which version or git commit of the terraform scripts was used to build the current prod?
- We tag things with the pipeline ID which is made up of the git short hash + pipeline run count
- We also do some AWS tricks to have the pipeline ID embedded in the AWS role assume process that we use
- Most CI systems provide the commit hash of the repository for the current build. I.e. you can just tag a revision with the date and environment it’s been deployed to
For “proper” unit testing with all dependencies in memory, it’s looking compelling on prem by combining Terraform with the golang vCenter vcsim tool where you can replicate a vCenter set of resources locally. Is anyone aware of such simulation tools for any of the public clouds?
- There are some AWS stub tools, I’ve never looked at them
- take a look at localstack
What exactly caused your complete infra outage?
- Basically applying a new resource against a new (wrong) terraform state.
How are you guys managing state migrations? For example, I want to rename a module? I want to rename a module module.x.something
to module.y.something
. We’ve always had to do this “by hand” before our pipeline runs with terraform state mv. Any hints on how to get this in a pipeline in a “migrations”
- tf state mv works well
- terraform state mv works fine, but its always outside of our pipeline. We are adding it to our PRs right now to say “Hey, before we merge this PR into environment, do these state moves”
But how to “terraform state..” when you don’t have access to the state / infra, because only your CI has
- i did it manually, not in ci
- that then, of course, breaks the concept of only CI has access
- use a temporary one-off pipeline to do such renaming
what about rollbacks with terraform?
- no answers provided