-
Notifications
You must be signed in to change notification settings - Fork 9.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
data-source/iam_instance_profile: export attributes role_arn and role_name #4300
data-source/iam_instance_profile: export attributes role_arn and role_name #4300
Conversation
23f69c7
to
7992cf3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this! 😄 LGTM and I'll fix the two items below on merge.
=== RUN TestAccAWSDataSourceIAMInstanceProfile_basic
--- PASS: TestAccAWSDataSourceIAMInstanceProfile_basic (12.58s)
for _, r := range instanceProfile.Roles { | ||
d.Set("role_id", r.RoleId) | ||
} | ||
// it's guaranteed that instanceProfile.Roles exists and has one element |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should perform a len()
test to prevent a panic if for some reason instanceProfile.Roles
has no elements.
if len(instanceProfile.Roles) > 0 {
role := instanceProfile.Roles[0]
d.Set("role_arn", role.Arn)
d.Set("role_id", role.RoleId)
d.Set("role_name", role.RoleName)
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So we can't always trust aws as we've seen quite a few times 😆
resource.TestMatchResourceAttr( | ||
"data.aws_iam_instance_profile.test", | ||
"arn", | ||
regexp.MustCompile("^arn:aws:iam::[0-9]{12}:instance-profile/testpath/"+profileName+"$"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for adjusting this to be more concise! A maintainability note: we should allow other AWS partitions for acceptance testing in aws-cn
/aws-us-gov
. Easiest way is: ^arn:[^:]+:
...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good to know. thanks 😄
This has been released in version 1.16.0 of the AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks! |
fix #4080
As arn and name are most likely concerned when reading instance profile.