diff --git a/README.md b/README.md index 2c29e70..5ad5c8b 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,7 @@ module "elasticsearch" { elasticsearch_version = "6.5" instance_type = "t2.small.elasticsearch" instance_count = 4 + ebs_volume_size = 10 iam_role_arns = ["arn:aws:iam::XXXXXXXXX:role/ops", "arn:aws:iam::XXXXXXXXX:role/dev"] iam_actions = ["es:ESHttpGet", "es:ESHttpPut", "es:ESHttpPost"] encrypt_at_rest_enabled = true diff --git a/README.yaml b/README.yaml index 549ef72..bfe001a 100644 --- a/README.yaml +++ b/README.yaml @@ -63,6 +63,7 @@ usage: |- elasticsearch_version = "6.5" instance_type = "t2.small.elasticsearch" instance_count = 4 + ebs_volume_size = 10 iam_role_arns = ["arn:aws:iam::XXXXXXXXX:role/ops", "arn:aws:iam::XXXXXXXXX:role/dev"] iam_actions = ["es:ESHttpGet", "es:ESHttpPut", "es:ESHttpPost"] encrypt_at_rest_enabled = true diff --git a/examples/basic/main.tf b/examples/basic/main.tf index c8777bb..00bc154 100644 --- a/examples/basic/main.tf +++ b/examples/basic/main.tf @@ -15,6 +15,7 @@ module "elasticsearch" { elasticsearch_version = "6.5" instance_type = "t2.small.elasticsearch" instance_count = 4 + ebs_volume_size = 10 iam_role_arns = ["arn:aws:iam::XXXXXXXXX:role/ops", "arn:aws:iam::XXXXXXXXX:role/dev"] iam_actions = ["es:ESHttpGet", "es:ESHttpPut", "es:ESHttpPost"] encrypt_at_rest_enabled = "true"