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

Fork Sync: Update from parent repository #25

Merged
merged 30 commits into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
da6bd9e
adding CEV support
AdamTylerLynch Aug 25, 2023
78aa3fb
Added Create and Read
AdamTylerLynch Aug 28, 2023
3e349df
updated waiters
AdamTylerLynch Aug 28, 2023
8ee6c5f
added CEVs
AdamTylerLynch Aug 29, 2023
4a75f0b
Merge branch 'main' into f-rds_custom_engine_version
AdamTylerLynch Aug 29, 2023
961689d
added to package gen
AdamTylerLynch Aug 29, 2023
1e26ba5
added CfSS, CfO
AdamTylerLynch Aug 30, 2023
92f4e74
added tests and updates
AdamTylerLynch Aug 31, 2023
d030bf1
making tetests callable
AdamTylerLynch Aug 31, 2023
c1c7756
added source AMI support, buttoned up tests.
AdamTylerLynch Sep 1, 2023
84e8320
Merge branch 'main' into f-rds_custom_engine_version
AdamTylerLynch Sep 1, 2023
902790d
added changelog
AdamTylerLynch Sep 5, 2023
d275531
renamed docs file
AdamTylerLynch Sep 5, 2023
dc86de6
fix lint: Regex Cache
AdamTylerLynch Sep 5, 2023
2bfca0b
lint-fix null output checking
AdamTylerLynch Sep 5, 2023
3cacd81
removed generated html.markdown
AdamTylerLynch Sep 5, 2023
571ae6e
lint-fix: website spacing
AdamTylerLynch Sep 5, 2023
e8ff542
added tags testing
AdamTylerLynch Sep 5, 2023
bb5ca41
Tweak CHANGELOG entry.
ewbankkit Sep 6, 2023
2ee2a4f
Tweak documentation.
ewbankkit Sep 6, 2023
4eca3c7
Update website/docs/r/rds_custom_db_engine_version.markdown
ewbankkit Sep 12, 2023
748acb6
Update website/docs/r/rds_custom_db_engine_version.markdown
ewbankkit Sep 12, 2023
a7460e7
Configures compound id
gdavison Sep 25, 2023
fbb6cb0
Ignores error when account not configured for QuickSight
gdavison Sep 26, 2023
4733463
Merge branch 'main' into HEAD
ewbankkit Sep 26, 2023
0d90249
Update CHANGELOG.md after v5.18.1
Sep 26, 2023
93d1f45
Merge pull request #33615 from hashicorp/b-sweep-quicksight-vpc-conne…
gdavison Sep 26, 2023
1114610
Merge pull request #33614 from hashicorp/b-sweep-service-catalog-prov…
gdavison Sep 26, 2023
a6744e6
Update CHANGELOG.md for #33614
Sep 26, 2023
a425ad0
Merge pull request #33285 from AdamTylerLynch/f-rds_custom_engine_ver…
ewbankkit Sep 26, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/33285.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
aws_rds_custom_db_engine_version
```
3 changes: 3 additions & 0 deletions internal/service/quicksight/sweep.go
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,9 @@ func skipSweepError(err error) bool {
if tfawserr.ErrCodeEquals(err, quicksight.ErrCodeUnsupportedUserEditionException) {
return true
}
if tfawserr.ErrMessageContains(err, quicksight.ErrCodeResourceNotFoundException, "Directory information for account") {
return true
}

return sweep.SkipSweepError(err)
}
Expand Down
Loading