Ben Kehoe
Ben Kehoe
That's basically what I'm saying, there are tools out there to do this in a comprehensive way. `aws-sso-util console` is meant to explore packaging up console launching information in a...
You may be able to use [aws-sso-credential-process](https://github.com/benkehoe/aws-sso-credential-process) with `AWS_SDK_LOAD_CONFIG=1` set to enable AWS SSO credentials to be used. If that doesn't work, there is a workaround, developed for the CDK...
@nishitjain13 Did you try the `credential_process` method using `aws-sso-util` instead of `aws2-wrap`? I have updated the documentation for it [`here`](https://github.com/benkehoe/aws-sso-util#adding-aws-sso-support-to-aws-sdks). Additionally, [ `aws-export-credentials`](https://github.com/benkehoe/aws-export-credentials) supports AWS SSO and allows you to...
I'm a little confused now. The AWS JavaScript SDK v2 added support for [AWS SSO in v2.1093.0](https://github.com/aws/aws-sdk-js/blob/master/CHANGELOG.md#210930) and from what I can tell Amplify CLI [requires v2.1113.0](https://github.com/aws-amplify/amplify-cli/blob/dev/packages/amplify-cli/package.json#L77), so it seems...
I'd point out that there's an AWS blog on running bash scripts in a CloudFormation template: https://aws.amazon.com/blogs/mt/running-bash-commands-in-aws-cloudformation-templates/ It feels like we should also be having a discussion on [cfn-language-discussion](https://github.com/aws-cloudformation/cfn-language-discussion) about...
I guess I wanted to encourage discussion as a single topic: how to better represent and manage resource ownership. I think adoption/abdication probably requires proxies.
in @ikben's example of adoption: ```yaml TheSameOrAnotherLogicalName: Type: AWS::SSM::Parameter Properties: Type: String Value: SomeValue PhysicalResourceId: AABBCCDDEE ``` What properties would you expect to be required? What would happen if they...
Adoption is now supported, called "[resource import](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/resource-import.html)". It requires two steps to ensure the properties you've set for the imported resource are correct (run drift detection after import). You can't...
This issue is somewhat related to https://github.com/aws-cloudformation/aws-cloudformation-resource-schema/issues/79 for resources that inherently must have their operations serialized, but is distinct for resources subject to non-inherent account limits.
I've done this for AWS SSO specifically with [`aws-sso-util console`](https://github.com/benkehoe/aws-sso-util/blob/master/docs/console.md). One aspect of it that I'd like to see if it's implemented in the AWS CLI is the ability to...