Skip to content
Prev Previous commit
Next Next commit
fix bug of ephemeral storage field name
  • Loading branch information
liortct committed Mar 26, 2022
commit d319b32feea385f22a6719246076d041a3fbc2a8
8 changes: 4 additions & 4 deletions examples/ephemeral-stoage/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ module "lambda_function" {

publish = true

function_name = "${random_pet.this.id}-lambda-ephemeral-stoage"
handler = "index.lambda_handler"
runtime = "python3.8"
ephemeral_storage = 10240
function_name = "${random_pet.this.id}-lambda-ephemeral-stoage"
handler = "index.lambda_handler"
runtime = "python3.8"
ephemeral_storage_size = 10240

}