-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* WIP scenario outline * Finished fleshing out scenario structure. * 80% impl and need to do more research on Aurora DB Engines, Engine Families, etc * Use secrecy for the password and refactor the bin. Types check * Use constant DB_ENGINE * Better handle existing parameter group. Refactor: extracted rds caller Tests for set_engine Added get_engines test Finished non-waiter tests Added waiting test * Split scenario mod and tests. * Add snapshot * Moved Aurora, bump the clap version, and add Aurora metadata. * README update * Fix snippet_files bad file path * Fix metadata * Fix rename * Format * Editorial updates
- Loading branch information
1 parent
38d57ce
commit a8606e2
Showing
70 changed files
with
2,732 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[package] | ||
name = "aurora-code-examples" | ||
authors = [ | ||
"David Souther <dpsouth@amazon.com>", | ||
] | ||
edition = "2021" | ||
version = "0.1.0" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
anyhow = "1.0.75" | ||
assert_matches = "1.5.0" | ||
aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" } | ||
aws-smithy-http = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" } | ||
aws-smithy-runtime-api = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" } | ||
aws-sdk-rds = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "next" } | ||
inquire = "0.6.2" | ||
mockall = "0.11.4" | ||
phf = { version = "0.11.2", features = ["std", "macros"] } | ||
sdk-examples-test-utils = { path = "../../test-utils" } | ||
secrecy = "0.8.0" | ||
tokio = { version = "1.20.1", features = ["full", "test-util"] } | ||
tracing = "0.1.37" | ||
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] } |
Oops, something went wrong.