-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
fix kinesis firehose input creation #7578
Conversation
resource "aws_kinesis_analytics_application" "test" { | ||
name = "testAcc-%d" | ||
code = "testCode\n" | ||
inputs = { |
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.
@kl4w FYI in Terraform 0.12, this syntax is no longer valid for configuration blocks and the configuration upgrade tool will fix it to input {
(same with other configuration blocks in this test configuration)
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, thanks @kl4w 🚀 Will go back and fix the configuration to be 0.12 compatible during next round of acceptance testing.
--- PASS: TestAccAWSKinesisAnalyticsApplication_basic (4.80s)
--- PASS: TestAccAWSKinesisAnalyticsApplication_update (7.22s)
--- PASS: TestAccAWSKinesisAnalyticsApplication_referenceDataSource (11.62s)
--- PASS: TestAccAWSKinesisAnalyticsApplication_referenceDataSourceUpdate (18.47s)
--- PASS: TestAccAWSKinesisAnalyticsApplication_addCloudwatchLoggingOptions (18.43s)
--- PASS: TestAccAWSKinesisAnalyticsApplication_Outputs_Lambda_Create (25.14s)
--- PASS: TestAccAWSKinesisAnalyticsApplication_updateCloudwatchLoggingOptions (31.14s)
--- PASS: TestAccAWSKinesisAnalyticsApplication_Outputs_Lambda_Add (33.68s)
--- PASS: TestAccAWSKinesisAnalyticsApplication_inputsKinesisStream (75.97s)
--- PASS: TestAccAWSKinesisAnalyticsApplication_outputsMultiple (76.15s)
--- PASS: TestAccAWSKinesisAnalyticsApplication_outputsAdd (93.23s)
--- PASS: TestAccAWSKinesisAnalyticsApplication_inputsAdd (96.16s)
--- PASS: TestAccAWSKinesisAnalyticsApplication_outputsKinesisStream (101.36s)
--- PASS: TestAccAWSKinesisAnalyticsApplication_inputsKinesisFirehose (103.06s)
--- PASS: TestAccAWSKinesisAnalyticsApplication_outputsUpdateKinesisStream (150.49s)
--- PASS: TestAccAWSKinesisAnalyticsApplication_inputsUpdateKinesisStream (150.63s)
This has been released in version 1.60.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! |
Fixes #7394
Changes proposed in this pull request:
Output from acceptance testing: