Skip to content

Commit

Permalink
Restore subscription to Landsat SNS
Browse files Browse the repository at this point in the history
  • Loading branch information
chuckwondo committed Nov 15, 2023
1 parent 0d04f19 commit e453a0f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions stack/stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -760,15 +760,15 @@ def __init__(self, scope: core.Construct, id: str, **kwargs) -> None:
self, "LandsatHistoricSNSTopic", topic_arn=LANDSAT_HISTORIC_SNS_TOPIC
)

# self.landsat_step_function_trigger = StepFunctionTrigger(
# self,
# "LandsatStepFunctionTrigger",
# state_machine=self.landsat_step_function.state_machine.ref,
# code_file="execute_landsat_step_function.py",
# timeout=180,
# input_sns=self.landsat_sns_topic,
# layers=[self.hls_lambda_layer],
# )
self.landsat_step_function_trigger = StepFunctionTrigger(
self,
"LandsatStepFunctionTrigger",
state_machine=self.landsat_step_function.state_machine.ref,
code_file="execute_landsat_step_function.py",
timeout=180,
input_sns=self.landsat_sns_topic,
layers=[self.hls_lambda_layer],
)

# self.landsat_step_function_historic_trigger = StepFunctionTrigger(
# self,
Expand Down

0 comments on commit e453a0f

Please sign in to comment.