-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ECR, ecr example, and chain region provider (#557)
- Loading branch information
Showing
4 changed files
with
109 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,6 +80,7 @@ val tier1Services = setOf( | |
"sqs", | ||
"ssm", | ||
"sts", | ||
"ecr", | ||
"eks" | ||
) | ||
|
||
|
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,12 @@ | ||
[package] | ||
name = "ecr-examples" | ||
version = "0.1.0" | ||
authors = ["Russell Cohen <rcoh@amazon.com>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
aws-sdk-ecr = { path = "../../build/aws-sdk/ecr" } | ||
tokio = { version = "1", features = ["full"]} | ||
structopt = { version = "0.3", default-features = false } | ||
tracing-subscriber = { version = "0.2.16", features = ["fmt"] } | ||
aws-types = { path = "../../build/aws-sdk/aws-types" } |
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,46 @@ | ||
use aws_sdk_ecr::{Config, Region}; | ||
use aws_types::region; | ||
use structopt::StructOpt; | ||
|
||
#[derive(Debug, StructOpt)] | ||
struct Opt { | ||
/// The region | ||
#[structopt(short, long)] | ||
region: Option<String>, | ||
|
||
#[structopt(long)] | ||
repository: String, | ||
|
||
#[structopt(short, long)] | ||
verbose: bool, | ||
} | ||
#[tokio::main] | ||
async fn main() -> Result<(), aws_sdk_ecr::Error> { | ||
let Opt { | ||
region, | ||
repository, | ||
verbose, | ||
} = Opt::from_args(); | ||
if verbose { | ||
tracing_subscriber::fmt::init(); | ||
} | ||
let provider = region::ChainProvider::first_try(region.map(Region::new)) | ||
.or_default_provider() | ||
.or_else(Region::new("us-east-2")); | ||
let client = aws_sdk_ecr::Client::from_conf(Config::builder().region(provider).build()); | ||
let rsp = client | ||
.list_images() | ||
.repository_name(&repository) | ||
.send() | ||
.await?; | ||
let images = rsp.image_ids.unwrap_or_default(); | ||
println!("found {} images", images.len()); | ||
for image in images { | ||
println!( | ||
"image: {}:{}", | ||
image.image_tag.unwrap(), | ||
image.image_digest.unwrap() | ||
); | ||
} | ||
Ok(()) | ||
} |