This file contains 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
cd ~ | |
sudo yum -y install java-1.7.0-openjdk | |
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.1.zip | |
unzip elasticsearch-0.90.1.zip | |
rm -rf elasticsearch-0.90.1.zip | |
mv elasticsearch-0.90.1 elasticsearch | |
sudo mv elasticsearch /usr/local/share | |
cd /usr/local/share |
This file contains 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
provider "aws" { | |
region = "us-east-1" | |
} | |
variable "cidr" { | |
# default = "0.0.0.0/0" | |
default = "" | |
} | |
resource "aws_security_group" "dummy" { |