classmethod / gradle-aws-plugin

Gradle plugin to manage Amazon Web Services
276 stars 132 forks source link

Allow json comments in beanstalk configuration templates #130

Closed jansauer closed 6 years ago

jansauer commented 6 years ago

Templates can get disordered. Using the lax json parser type allows the use of java script comments inside the json of the beanstalk configuration templates.

[
  { "Namespace" : "aws:autoscaling:launchconfiguration", "OptionName" : "InstanceType", "Value" : "t2.micro" },

  /* Scaling */
  { "Namespace" : "aws:elasticbeanstalk:environment", "OptionName" : "EnvironmentType", "Value" : "LoadBalanced" },
  { "Namespace" : "aws:autoscaling:asg", "OptionName" : "MinSize", "Value" : "1" },
  { "Namespace" : "aws:autoscaling:asg", "OptionName" : "MaxSize", "Value" : "5" },
]
dai0304 commented 6 years ago

please fix CI build

jansauer commented 6 years ago

Sorry. I was already out for the day and did not notice that.