Skip to content

Commit

Permalink
Fix cloudtools#342: ECS LoadBalancerName property is a string
Browse files Browse the repository at this point in the history
  • Loading branch information
markpeek authored and covataamos committed Oct 24, 2016
1 parent df3e389 commit aa6f45c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions troposphere/ecs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from . import AWSObject, AWSProperty, Ref
from . import AWSObject, AWSProperty
from .validators import boolean, network_port, positive_integer


Expand All @@ -12,7 +12,7 @@ class LoadBalancer(AWSProperty):
props = {
'ContainerName': (basestring, False),
'ContainerPort': (network_port, False),
'LoadBalancerName': ([basestring, Ref], False),
'LoadBalancerName': (basestring, False),
}


Expand Down

0 comments on commit aa6f45c

Please sign in to comment.