Ben Kehoe

Results 245 comments of Ben Kehoe

This tool is no longer maintained, because there's native support for it in the AWS CLI: https://awscli.amazonaws.com/v2/documentation/api/latest/reference/configure/export-credentials.html That said, I'll take a look at what changed in botocore

What's the output when you run with `--debug`?

What is your intention here? The normal function of boto3 is to use either the global STS endpoint or the regional endpoints (corresponding to whichever region is set on the...

Will the new resource framework help solve this, given that it has dedicated support for long-running operations?

I guess when I think about the authentication part of this, which is that the user has an authenticated session that expires at some specific time, I balance that against...

The CloudFormation team should enforce that when teams add new resources to CloudFormation, they have both a Name attribute (just "Name", not "FooName" for a Foo resource unless there is...

The attributes of a CloudFormation resource should not have to match the underlying APIs at the expense of user confusion.

The CFN resource developed by the service team would be responsible for mapping between the required "Name" attribute and the corresponding "Name" parameter in their APIs. Who knows, maybe it...

> CFN shouldn't be seen as "SDK in the cloud" Seconded. Service resources have lifecycles that are not always well-represented by mapping directly to API calls. CloudFormation needs to internalize...

I think I'd agree for "refresh of attributes only happens when resource is updated", but I'd follow that with "drift detection should detect that attributes in use have changed". As...