From 929e663c3fbfbe7b0eab59404c4e3936916a3c0c Mon Sep 17 00:00:00 2001 From: Mark Peek Date: Sat, 18 Nov 2017 22:01:05 -0800 Subject: [PATCH] Add ResourceName to elasticbeanstalk OptionSettings --- troposphere/elasticbeanstalk.py | 1 + 1 file changed, 1 insertion(+) diff --git a/troposphere/elasticbeanstalk.py b/troposphere/elasticbeanstalk.py index 3234aecc1..5049bd2cc 100644 --- a/troposphere/elasticbeanstalk.py +++ b/troposphere/elasticbeanstalk.py @@ -60,6 +60,7 @@ class OptionSettings(AWSProperty): props = { 'Namespace': (basestring, True), 'OptionName': (basestring, True), + 'ResourceName': (basestring, False), 'Value': (basestring, True), }