-
Notifications
You must be signed in to change notification settings - Fork 156
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
Update terraform-provider-aws to v1.38.0. #341
Conversation
I don't see any updates to In general, we should add support for all newly exposed APIs as part of updating the TF provider. |
@@ -33,17 +33,17 @@ export class Listener extends pulumi.CustomResource { | |||
/** | |||
* An Action block. Action blocks are documented below. | |||
*/ | |||
public readonly defaultActions: pulumi.Output<{ targetGroupArn: string, type: string }[]>; | |||
public readonly defaultAction: pulumi.Output<{ fixedResponse?: { contentType: string, messageBody?: string, statusCode: string }, redirect?: { host?: string, path?: string, port?: string, protocol?: string, query?: string, statusCode: string }, targetGroupArn?: string, type: string }>; |
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.
Interesting. This will be a breaking change. Looks like a case there MaxItems==1
was added in TF, which is not really breaking, but that causes us to project this differently.
I don't think there is anything we can/should do here - but worth marking this as breaking and adding a note to the PR.
I did not look, to be honest. I will check. |
@lukehoban I've added the missing resources and data sources. |
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.
LGTM
No description provided.