fpco / terraform-aws-foundation

Establish a solid Foundation on AWS with these modules for Terraform
MIT License
203 stars 99 forks source link

ELK - Documentation #287

Open ggund opened 4 years ago

ggund commented 4 years ago

If you have a question that isn't covered by the repository examples or the terraform module documentation please reach out.

If your question is more generally about any of the tools used in the repository, it is advised to reach out to the relevant help resources for that tool. Your question is more likely to get answered and will have more visibility.

Please make sure that you are using the latest release.

terraform-aws-version - v0.12.18

question

I am using the ELK stack installation setup for the first time, but I am little confused with the paramters that needs to be passed

  1. elasticsearch_internal_alb - As per the variable.tf of the elasticsearch module, I see that the securotygroups_id is required but what should be the INBOUND and OUTBOUND ports and what is the use of this sg. Secondly - If we have to go with ALB the the documentation look for arn, dns_name and zone_id as required. Shouldn't the ALB ARN be created through terraform provisioning. Similar doubts for kibana_alb

Can you please provide a sample example of what the Input will look like if you have to setup in a Dev Env?

Magicloud commented 4 years ago
  1. Base rules are attached by module. So if you do not have other requirement, TCP 9200 and 9201 will be opened.

  2. ARN is needed only when deploy_elb is false, which means the module won't create ELB, which means you need to provide an ELB to the module via ARN.