Skip to content
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

provider/aws: Fix issue with IAM Server Certificates and Chains #2871

Merged
merged 1 commit into from
Jul 29, 2015

Conversation

catsby
Copy link
Contributor

@catsby catsby commented Jul 28, 2015

Should fix #2713 and #2802 . I don't think it interferes with #2411

@@ -132,9 +140,10 @@ func resourceAwsIAMServerCertificateDelete(d *schema.ResourceData, meta interfac
}

func normalizeCert(cert interface{}) string {
if cert == nil {
if cert == nil || cert == (*string)(nil) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't seem like it should be necessary?

https://play.golang.org/p/gED99KcQnP

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't think so either, but https://play.golang.org/p/A6vKbXIkfp

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wow... that's unexpected! LGTM

@phinze
Copy link
Contributor

phinze commented Jul 29, 2015

LGTM

catsby added a commit that referenced this pull request Jul 29, 2015
provider/aws: Fix issue with IAM Server Certificates and Chains
@catsby catsby merged commit 6339e18 into master Jul 29, 2015
@phinze phinze deleted the b-aws-server-sert-fixes branch January 4, 2016 16:42
@ghost
Copy link

ghost commented Apr 29, 2020

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 have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@ghost ghost locked and limited conversation to collaborators Apr 29, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

AWS Server Certificate path argument fails strconv.ParseBool
2 participants