Skip to content

Commit

Permalink
f: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanjjung committed Dec 6, 2024
1 parent 011cbce commit e6ab939
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tb_pulumi/cloudwatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,10 +235,9 @@ def __init__(
aws.lb.LoadBalancer.get(resource_name=f'lb-{idx}', id=arn).arn_suffix for idx, arn in enumerate(lbs)
]
)
pulumi.info(lb_arn_suffixes)

unhealthy_hosts = pulumi.Output.all([resource.arn_suffix, lb_arn_suffixes]).apply(
lambda outputs: print(outputs)
unhealthy_hosts = pulumi.Output.all([resource.arn_suffix, *lb_arn_suffixes]).apply(
lambda outputs: pulumi.info(outputs)
# [
# aws.cloudwatch.MetricAlarm(
# f'{self.name}-unhealthy-hosts',
Expand Down

0 comments on commit e6ab939

Please sign in to comment.