Package com.netflix.simianarmy.aws.conformity.rule

Examples of com.netflix.simianarmy.aws.conformity.rule.SameZonesInElbAndAsg


                        "simianarmy.conformity.rule.InstanceTooOld.instanceAgeThreshold", 180)));
        }

        if (configuration().getBoolOrElse(
                "simianarmy.conformity.rule.SameZonesInElbAndAsg.enabled", false)) {
            ruleEngine().addRule(new SameZonesInElbAndAsg(getAwsCredentialsProvider()));
        }

        if (configuration().getBoolOrElse(
                "simianarmy.conformity.rule.InstanceInVPC.enabled", false)) {
                ruleEngine.addRule(new InstanceInVPC(getAwsCredentialsProvider()));
View Full Code Here

TOP

Related Classes of com.netflix.simianarmy.aws.conformity.rule.SameZonesInElbAndAsg

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.