-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Client token fix #640
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
Closed
Closed
Client token fix #640
Conversation
This file contains hidden or 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
…n extra instances. Fixes aws#498
…ad of the oldest. Fixes aws#490
make vault.archives uses the same account_id from vault
Fix a performance issue when calling CredentialProviders::DefaultProvider#credentials
Updated the documentation for R53 HostedZoneCollection to reflect the required use of ID over name
…f service specific http request classes. Fixes aws#471
Replace UUIDTools with SecureRandom.uuid
Support uri unsafe characters in proxy_uri
…ial providers. This is to make sure ec2 credential provider does not hit metadata service too many times when starting a highly concurrent environment. Fixes aws#440
…nature error. Fixes aws#508
When adding a custom delivery method, need to use AWS::Rails namespace
The #head_object operation is supposed to parallel the #get_object operation for all input headers, but this was not the case due to an omission in the hand coding. This change adds the remaining input headers and the associated test. Resolves issue aws#495.
Add Header Options to AWS::S3::Client#head_object
…S_KEY/AWS_SECRET_KEY. Backward compatible with previous formats.
Configure from current ENV variable names: AWS_ACCESS_KEY / AWS_SECRET_KEY
… and conditionals.
Example: ec2 = AWS::EC2.new ec2.images.each(image_ids:['...']) do |img| # ... end Fixes aws#524
In cases where the EC2 provider is configured as the only valid provider of credentials, intermittent failures are to be expected and can be retried safely in order to avoid a credential error.
Added gp2 volume_type to documentation
These specs now expect the '/bucket-name/key' instead of 'bucket-name/key' as the copy source. Not slash-prefixing the bucket name when the user gives an explicit :bucket_name option to copy_to/from to avoid double prefixing issues. See aws#624
…edential-provider Add a configurable number of retries to the EC2 credential provider
Update instance_collection.rb
Allow getting a secure url for the bucket
…e #empty?, causing spec to fail
…oved to a separate gem. changed implementation.
Fixes millisecond parsing in custom DateTime parser
Ruby Warnings
x-amz-acl query string is case sensitive
Mention global stubbing in README
CurbHttpHandler: Store network error if status_code is 0
Support geo_location in ResourceRecordSet
|
||
options[:client_token] = SecureRandom.uuid | ||
options[:client_token] = SecureRandom.uuid unless options[:client_token] |
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.
cleaner would be
options[:client_token] ||= SecureRandom.uuid
This has been merged into the aws-sdk-v1 branch. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.