Amazon web services – With Terraform, when using resource `aws_iam_access_key` and output to retrieve the secret key the result retrieved is "tostring(null)"
I am using Terraform aws provider and I want create IAM user access key using aws_iam_access_key{} resource. But I don't know how to retrieve the secret key. I create the resource like this: resource "aws_iam_access_key" "main_user_access_key" { user = aws_iam_user.main_user.name…