Commit 8ad3756a authored by Huy, Tae Young's avatar Huy, Tae Young Committed by GitHub

fix: Delete DEPRECATED ses_smtp_password in iam-user. (#88)

parent e31c2cd6
......@@ -64,7 +64,6 @@ This module outputs commands and PGP messages which can be decrypted either usin
| this\_iam\_access\_key\_id | The access key ID |
| this\_iam\_access\_key\_key\_fingerprint | The fingerprint of the PGP key used to encrypt the secret |
| this\_iam\_access\_key\_secret | The access key secret |
| this\_iam\_access\_key\_ses\_smtp\_password | DEPRECATED: The secret access key converted into an SES SMTP password by applying AWS's SigV2 conversion algorithm |
| this\_iam\_access\_key\_ses\_smtp\_password\_v4 | The secret access key converted into an SES SMTP password by applying AWS's Sigv4 conversion algorithm |
| this\_iam\_access\_key\_status | Active or Inactive. Keys are initially active, but can be made inactive by other means. |
| this\_iam\_user\_arn | The ARN assigned by AWS for this user |
......
......@@ -56,18 +56,6 @@ output "this_iam_access_key_encrypted_secret" {
value = element(concat(aws_iam_access_key.this.*.encrypted_secret, [""]), 0)
}
output "this_iam_access_key_ses_smtp_password" {
description = "DEPRECATED: The secret access key converted into an SES SMTP password by applying AWS's SigV2 conversion algorithm"
value = element(
concat(
aws_iam_access_key.this.*.ses_smtp_password,
aws_iam_access_key.this_no_pgp.*.ses_smtp_password,
[""],
),
0,
)
}
output "this_iam_access_key_ses_smtp_password_v4" {
description = "The secret access key converted into an SES SMTP password by applying AWS's Sigv4 conversion algorithm"
value = element(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment