Skip to content

Commit

Permalink
f: call monitor
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanjjung committed Dec 18, 2024
1 parent 4afffcb commit b3d7da0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion tb_pulumi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ def config(self) -> dict:
def flatten(self) -> set[pulumi.Resource]:
"""Returns a flat set of all resources existing within this project."""

pulumi.info(f'FLATTENING RESOURCES: {self.resources.keys()}')
return flatten(self.resources)


Expand Down
1 change: 1 addition & 0 deletions tb_pulumi/monitoring.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ def on_apply(self, outputs):
"""

self.supported_resources = [res for res in self.all_resources if type(res) in self.type_map.keys()]
self.monitor(outputs)

@abstractclassmethod
def monitor(self, outputs):
Expand Down

0 comments on commit b3d7da0

Please sign in to comment.