Skip to content

Commit

Permalink
[resotolib][bug] Make loadbalancer public_ip_address Optional (#729)
Browse files Browse the repository at this point in the history
  • Loading branch information
lloesche authored Mar 24, 2022
1 parent e8f8c1a commit cb325c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resotolib/resotolib/baseresources.py
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,7 @@ class BaseDatabase(BaseResource):
class BaseLoadBalancer(BaseResource):
kind: ClassVar[str] = "load_balancer"
lb_type: str = ""
public_ip_address: str = None
public_ip_address: Optional[str] = None
backends: List[str] = field(default_factory=list)


Expand Down

0 comments on commit cb325c9

Please sign in to comment.