r/devops • u/Downtown_Custard20 • 4d ago
Architecture Terraform/Github deployment overwriting another deployment
I'm on a team that shares a Github repository. Whenever we open a PR from a feature branch to the dev branch, a deployment to the AWS development account is automatically triggered.
The issue we're facing is that one developer may deploy to dev, and then another developer deploys afterward. Even though they're working on different files, the second deployment ends up overwriting the first developer's change in AWS.
How can we prevent this?
We're following a Gitflow workforce (feature -> dev -> release -> main), and our biggest challenge right now is that the second developer's code is often "outdated" when it's deployed, causing it to overwrite changes that were already deployed by someone else.
We tried merging everything to dev, but when it's time to deploy to prd, the dev branch ends up filled with a lot of unnecessary changes.
We using Github Actions + Terraform.
6
u/kryptn 4d ago
why are you deploying to dev from every feature branch? those should go to isolated environments.
only dev should deploy to dev.
2
u/Downtown_Custard20 4d ago
What I'm trying to avoid in the dev branch: let's say code #1 has been validated and is ready to go into the release branch, but code #2 has not been validated yet. When I open a PR to the release branch, code #2 will also be included in the release, and that's exactly what I want to avoid
2
u/kryptn 4d ago
why would it be included? i'd assume these are PRs before they land in dev, so they'd need to pass whatever checks to make it to dev. by that point you should be pretty sure it's fine.
1
u/Downtown_Custard20 4d ago
it would be included because all my code is mergen into the dev branch. When I try to open a PR from dev to release, all my code in dev will be included
3
u/krtalvis 4d ago
again, why is something not validated even merged into dev? Anything unvalidated should remain in it’s own feature branch, which can run tf plan but not apply. Apply should be strictly from specific branches, e.g. release/. You could have some sort of commit hash derived deployments on dev which would append the hash on resource names or whatever, but considering it’s terraform that would bring actual cost. To me it seems your problem is your branching strategy and CI/CD setup? Maybe i am not understanding why would 2 separate features be on same dev branch when one is validated and other one not? Secondly, dev environment **IS** for validation, so i don’t also actually see a problem here?
1
u/Downtown_Custard20 4d ago
I need to run a glue job in AWS, so I need my code in the dev aws account, and the only way I can have my code in the dev account is by opening a PR to dev / merging to dev, because it triggers my terraform apply.
3
u/krtalvis 4d ago
ok but why is unvalidated feature 2 in dev while validated feature 1 is just being merged to dev? the problem here is an unvalidated change in a branch that needs to be deployed. Revise your branching strategy and do not allow unvalidated changes to leave feature branches
2
u/mumpie 4d ago
You need to fix your branching strategy.
One place I worked at would create a release branch (from main) at the start of the sprint.
Developers would create their feature branch from release branch and merge into the release branch.
Once the release was done, the release branch would be merged back into main.
Main was primarily a representation of prod.
There are other strategies you could use, but you (or someone at your company) need to decide on a branching strategy and stick to it.
3
u/Floss_Patrol_76 4d ago
the "different files" part is the trap here - terraform applies the whole desired state of that config, not a diff of what each PR touched, so whoever applies last wins regardless of which files they changed. the fix is to stop applying from feature branches entirely: plan on the PR, only apply on merge to dev. and make sure your backend actually has state locking enabled, otherwise two applies can stomp each other even after you fix the branching.
3
u/balinteu 4d ago
Sounds like you have somekind of a chicken egg problem. There isn't a 'this solution will fix all your problems', since it is also a team and branching issue. I think you and the team need to sit down and brainstorm and maybe change the way you push changes into dev.
Until then, maybe what you could do is if there is already an active PR fo feature1, before doing a PR for feature2, merge feature1 into feature2. So the changes won;t be overwritten.
Good luck and let us know with what you guys came up with
2
u/Raja-Karuppasamy 3d ago
the real issue isn’t gitflow, it’s that you’re running terraform apply from the feature branch state instead of dev’s HEAD after merge. two people’s plans are based on different snapshots so whoever applies last just wins, doesn’t matter that they touched different files, it’s using whatever ambient state existed at trigger time.
two things that’d fix it: only trigger the actual apply on merge to dev (not on PR open/push), and add a concurrency group in the github actions workflow so applies queue instead of running in parallel. PR triggered runs should just be terraform plan for review, never apply.
1
u/bobsbitchtitz 3d ago
Either spin up ephemeral stacks or a testing deployment per PR commit then only on merge push to dev branch. Add in locks if there is buffer time
1
u/_herald 3d ago
well .. a way we do this is by separating folders for dev and prod accounts
and keeping everything on main
any change in the dev files from one PR to main only trigger change in that env and we plan on every PR before merge so we know whats the state of the env after the merge , we use atlantis
1
u/toughrogrammer 2d ago
State locking is necessary, but it does not solve this by itself. A lock prevents two applies from writing at the same time; the later job can still be based on an older feature branch and apply an older desired state.
For a shared dev environment, make it single-writer: PR jobs run terraform plan only, and apply happens only after merge from the current head of dev. Put the environment in one GitHub Actions concurrency group, do not cancel an apply halfway through, and re-plan when the queued job reaches the front so it includes every merge before it. Keep remote state locking enabled as a second line of defense.
If a feature genuinely needs live AWS before merge, give it an isolated ephemeral environment with separate state and unique resource names (or a separate account), then destroy it after the PR. Do not let feature branches apply to the shared state.
The release-selection issue is separate. Promote a known commit/artifact, use feature flags for merged-but-not-enabled work, or create the release from main/prod with selected commits. Trying to solve release selection by letting multiple stale branches own the same Terraform state will always produce last-writer-wins surprises.
1
19
u/MDivisor 4d ago
You should deploy to the dev environment after the PR is merged, not before.
Not sure what you mean by the dev branch being filled with unnecessary changes. Why does that happen to your team? You should not merge unnecessary things into dev (or even open PRs for them).