Created
February 6, 2015 19:46
-
-
Save ryanking/ef54647933acd315ea11 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
provisioner "local-exec" { | |
command = "aws elb create-load-balancer-policy --load-balancer-name ${var.deploy_environment}-storm-elb --policy-name EnableProxyProtocol --policy-type-name ProxyProtocolPolicyType --policy-attributes AttributeName=ProxyProtocol,AttributeValue=True" | |
} | |
provisioner "local-exec" { | |
command = "aws elb set-load-balancer-policies-for-backend-server --load-balancer-name ${var.deploy_environment}-storm-elb --instance-port 8000 --policy-names EnableProxyProtocol" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment