Skip to content

Commit 07c8b4c

Browse files
authored
Set ebs volume size for basic example (#65)
1 parent e626091 commit 07c8b4c

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ module "elasticsearch" {
9595
elasticsearch_version = "6.5"
9696
instance_type = "t2.small.elasticsearch"
9797
instance_count = 4
98+
ebs_volume_size = 10
9899
iam_role_arns = ["arn:aws:iam::XXXXXXXXX:role/ops", "arn:aws:iam::XXXXXXXXX:role/dev"]
99100
iam_actions = ["es:ESHttpGet", "es:ESHttpPut", "es:ESHttpPost"]
100101
encrypt_at_rest_enabled = true

README.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ usage: |-
6363
elasticsearch_version = "6.5"
6464
instance_type = "t2.small.elasticsearch"
6565
instance_count = 4
66+
ebs_volume_size = 10
6667
iam_role_arns = ["arn:aws:iam::XXXXXXXXX:role/ops", "arn:aws:iam::XXXXXXXXX:role/dev"]
6768
iam_actions = ["es:ESHttpGet", "es:ESHttpPut", "es:ESHttpPost"]
6869
encrypt_at_rest_enabled = true

examples/basic/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ module "elasticsearch" {
1515
elasticsearch_version = "6.5"
1616
instance_type = "t2.small.elasticsearch"
1717
instance_count = 4
18+
ebs_volume_size = 10
1819
iam_role_arns = ["arn:aws:iam::XXXXXXXXX:role/ops", "arn:aws:iam::XXXXXXXXX:role/dev"]
1920
iam_actions = ["es:ESHttpGet", "es:ESHttpPut", "es:ESHttpPost"]
2021
encrypt_at_rest_enabled = "true"

0 commit comments

Comments
 (0)