File tree 2 files changed +1
-2
lines changed
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -325,7 +325,6 @@ A real functional testing example using Pytest can be seen [here](./tests/test_c
325
325
### Unit
326
326
- Add full functionality to pseudo variables.
327
327
* Variables like ` Partition ` , ` URLSuffix ` should change if the region changes.
328
- * Variables like ` StackName ` and ` StackId ` should have a better default than ""
329
328
- Handle References to resources that shouldn't exist.
330
329
* It's currently possible that a ` !Ref ` to a Resource stays in the final template even if that resource is later removed because of a conditional.
331
330
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class Template:
27
27
NoValue : str = "" # Not yet implemented
28
28
Partition : str = "aws" # Other regions not implemented
29
29
Region : str = "us-east-1"
30
- StackId : str = "" # If left black this will be generated
30
+ StackId : str = "" # If left blank this will be generated
31
31
StackName : str = "my-cloud-radar-stack"
32
32
URLSuffix : str = "amazonaws.com" # Other regions not implemented
33
33
You can’t perform that action at this time.
0 commit comments