You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
╷
│ Error: Splat of null value
│
│ on .terraform/modules/aws_iam_user_ses/outputs.tf line 17, in output "access_key_id":
│ 17: value = join("", local.access_key.*.id)
│ ├────────────────
│ │ local.access_key is null
│
│ Splat expressions (with the * symbol) cannot be applied to null sequences.
╵
╷
│ Error: Splat of null value
│
│ on .terraform/modules/aws_iam_user_ses/outputs.tf line 23, in output "secret_access_key":
│ 23: value = join("", local.access_key.*.secret)
│ ├────────────────
│ │ local.access_key is null
│
│ Splat expressions (with the * symbol) cannot be applied to null sequences.
╵
╷
│ Error: Splat of null value
│
│ on .terraform/modules/aws_iam_user_ses/outputs.tf line 29, in output "ses_smtp_password_v4":
│ 29: value = join("", compact(local.access_key.*.ses_smtp_password_v4))
│ ├────────────────
│ │ local.access_key is null
│
│ Splat expressions (with the * symbol) cannot be applied to null sequences.
╵
Expected Behavior
This code runs without this error
Steps to Reproduce
Use this module with create_iam_access_key = false.
Try to do a plan.
See error
Screenshots
If applicable, add screenshots or logs to help explain your problem.
Environment (please complete the following information):
Describe the Bug
When you configure:
After PR #58 the code will fail with the error:
Expand me
Expected Behavior
This code runs without this error
Steps to Reproduce
create_iam_access_key = false
.Screenshots
If applicable, add screenshots or logs to help explain your problem.
Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: