Skip to content

Commit f86d365

Browse files
fix: Add comment warning about expensive provisioned throughput mode (#29)
Co-authored-by: Anton Babenko <[email protected]>
1 parent 4029c20 commit f86d365

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ module "efs" {
1818
encrypted = true
1919
kms_key_arn = "arn:aws:kms:eu-west-1:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
2020
21-
performance_mode = "maxIO"
22-
throughput_mode = "provisioned"
23-
provisioned_throughput_in_mibps = 256
21+
# performance_mode = "maxIO"
22+
# NB! PROVISIONED TROUGHPUT MODE WITH 256 MIBPS IS EXPENSIVE ~$1500/month
23+
# throughput_mode = "provisioned"
24+
# provisioned_throughput_in_mibps = 256
2425
2526
lifecycle_policy = {
2627
transition_to_ia = "AFTER_30_DAYS"

examples/complete/main.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ module "efs" {
3131
encrypted = true
3232
kms_key_arn = module.kms.key_arn
3333

34-
performance_mode = "maxIO"
35-
throughput_mode = "provisioned"
36-
provisioned_throughput_in_mibps = 256
34+
# performance_mode = "maxIO"
35+
# NB! PROVISIONED TROUGHPUT MODE WITH 256 MIBPS IS EXPENSIVE ~$1500/month
36+
# throughput_mode = "provisioned"
37+
# provisioned_throughput_in_mibps = 256
3738

3839
lifecycle_policy = {
3940
transition_to_ia = "AFTER_30_DAYS"

0 commit comments

Comments
 (0)