File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed
template_generators/terraform/aws Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,6 @@ class IaCTemplateGenerationCloudFront(BaseModel):
115115class IaCTemplateGenerationSNS (BaseModel ):
116116
117117 sns_topic :bool = True
118- fifo_topic :bool = False
119118 topic_policy :bool = True
120119 subscription :bool = True
121120
Original file line number Diff line number Diff line change 11def IaC_template_generator_sns (input ) -> str :
22
33 aws_sns_create_topic = 'true' if input .sns_topic else 'false'
4- aws_sns_create_fifo_topic = 'true' if input .fifo_topic else 'false'
54 aws_sns_create_topic_policy = 'true' if input .topic_policy else 'false'
65 aws_sns_create_subscription = 'true' if input .subscription else 'false'
76
87 tfvars_file = f"""create = { aws_sns_create_topic }
9- fifo_topic = { aws_sns_create_fifo_topic }
108create_topic_policy = { aws_sns_create_topic_policy }
119create_subscription = { aws_sns_create_subscription }
1210"""
You can’t perform that action at this time.
0 commit comments