Terraspace Restricting Allowed Stacks for Specific Environments: Only Allow route53 to deploy Example
Terraspace Restricting Allowed Stacks for Specific Environments: Only Allow route53 to deploy Example
January 23, 2022
Covers how to allow and deny specific stacks for specific environments. Good examples are route53 and ACM certs for CloudFront.
For the example, let's say you have these stacks:
$ terraspace list
app/stacks/route53
app/stacks/stack1
app/stacks/stack2
If might only want to allow the route53 stack to deploy when TS_ENV=global
TS_ENV=global terraspace up route53
And the stack1
and stack2
stacks, is allowed to be deploy for other TS_ENV environments.
TS_ENV=dev terraspace up stack1
TS_ENV=dev terraspace up stack2
TS_ENV=prod terraspace up stack1
TS_ENV=prod terraspace up stack2
We'll show you how to achieve this with
config/app.rb
config/app.rb
Terraspace.configure do |config|
config.allow.stacks = ["stack1"]
# config.deny.stacks = ["stack2"]
end
Interestingly, configuring config.allow.stacks
and config.deny.stacks
will be respected by terraspace all
. So you don't have to do more configurations, Terraspace is smart enough to figure it out automatically.
Related Links
- Terraspace Docs: Terraspace Config Restricting Stacks
- GitHub Repo: boltops-learn/terraspace-restricting-stacks
Terraform Fundamentals 101
1h 36m
1h 36m
Terraform HCL Fundamentals
1h 53m
1h 53m
Terraspace Install Guides
8m
8m
Terraspace Fundamentals
2h 30m
2h 30m
Terraspace Cloud
2h 33m
2h 33m
Terraspace Terrafile
29m
29m
Terraspace and Terragrunt
19m
19m
Terraspace AWS Cloud
1h 43m
1h 43m
Terraspace Azure Cloud
1h 15m
1h 15m
Terraspace Google Cloud
1h 12m
1h 12m
Terraspace OnPrem
16m
16m
Terraspace Testing
47m
47m
Terraspace Development
24m
24m
Get full access to these great resources
All for less than the price of coffee a day
44 courses
286 lessons
46+ hours