### Credentials Rusoto has the ability to source AWS access credentials in a few different ways: 1. Environment variables via `rusoto::EnvironmentProvider` (`AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY`) 2. AWS credentials file via `rusoto::ProfileProvider` 3. IAM ECS container profile via `rusoto::ContainerProvider` 4. IAM EC2 instance profile via `rusoto::InstanceMetadataProvider` There is also `rusoto::ChainProvider`, which is a convenience for attempting to source access credentials using the methods above in order. If credentials cannot be obtained through one method, it falls back to the next. If all possibilites are exhausted, an error will be returned. `ProfileProvider` (and `ChainProvider`) also allow you to specify a custom path to the credentials file and the name of the profile to use. If not specified, the profile "default" is used. It's also possible to implement your own credentials sourcing mechanism by creating a type that implements `rusoto::ProvideAwsCredentials`. #### Credential refreshing Credentials obtained from environment variables and credential files expire ten minutes after being acquired and are refreshed on subsequent calls to `credentials()` (a method from the `ProvideAwsCredentials` trait). IAM instance profile credentials are refreshed as needed. Upon calling `credentials()` it will see if they are expired or not. If expired, it attempts to get new credentials from the metadata service. If that fails it will return an error. IAM credentials expiration time comes from the IAM metadata response. #### Local integration testing of IAM credentials Edit the relevant `address`/IP locations in [credential/src/container.rs](credential/src/container.rs) and [credential/src/instance_metadata.rs](credential/src/instance_metadata.rs). For local testing, you can use [moe](https://github.com/matthewkmayer/moe) and set the string to this: ```rust let mut address: String = "http://localhost:8080/latest/meta-data/iam/security-credentials".to_owned(); ```