Skip to content
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

EKS update-config should support naming the user with the passed in alias #5164

Closed
elijah-roberts opened this issue Apr 28, 2020 · 9 comments · Fixed by #5165
Closed

EKS update-config should support naming the user with the passed in alias #5164

elijah-roberts opened this issue Apr 28, 2020 · 9 comments · Fixed by #5165
Labels
community customization Issues related to CLI customizations (located in /awscli/customizations) eks-kubeconfig feature-request A feature should be added or improved. p2 This is a standard priority issue ready-for-review

Comments

@elijah-roberts
Copy link
Contributor

elijah-roberts commented Apr 28, 2020

Is your feature request related to a problem? Please describe.
I have multiple aws role to k8s role mappings per cluster. The eks update-config command supports setting the AWS_PROFILE variable under the user config if you pass in --profile. However, it defaults the username to the cluster arn, so if I do this with multiple roles it gets overwritten

Describe the solution you'd like
There is already precedent for overriding the context name by passing an --alias. If I run the following:
aws eks update-kubeconfig --name <clustername> --alias prod-admin --profile prod-admin-role

AND

aws eks update-kubeconfig --name <clustername> --alias prod-support --profile prod-support-role

I would like for the following config to be created:

- context:
    cluster: arn:aws:eks:us-west-2:redacted:cluster/prod-cluster
    user: prod-admin
  name: prod-admin
- context:
    cluster: arn:aws:eks:us-west-2:redacted:cluster/prod-cluster
    user: prod-support
  name: prod-support
kind: Config
preferences: {}
users:
- name: prod-admin
  user:
    exec:
      apiVersion: client.authentication.k8s.io/v1alpha1
      args:
      - --region
      - us-west-2
      - eks
      - get-token
      - --cluster-name
      - prod-cluster
      command: aws
      env:
      - name: AWS_PROFILE
        value: prod-admin-role
- name: prod-support
  user:
    exec:
      apiVersion: client.authentication.k8s.io/v1alpha1
      args:
      - --region
      - us-west-2
      - eks
      - get-token
      - --cluster-name
      - prod-cluster
      command: aws
      env:
      - name: AWS_PROFILE
        value: prod-support-role

This will allow me to simply run a command to loop through all my roles, list eks-clusters, and define contexts for each cluster and role.

Describe alternatives you've considered
I could create a separate utility to do this, but honestly even forking this repo and making the small change would be easier.

Additional context

I have this working locally, and it is a 2 line change to match existing functionality with context naming.

@elijah-roberts elijah-roberts added feature-request A feature should be added or improved. needs-triage This issue or PR still needs to be triaged. labels Apr 28, 2020
@elijah-roberts
Copy link
Contributor Author

elijah-roberts commented Apr 28, 2020

Here is an example loop command for setting up your kube config:

for profile in $(cat ~/.aws/credentials | grep '\[' | column -t -s '[]');
 do for cluster in $(aws eks list-clusters --profile $profile --output text | awk '{ print $2 }'); 
do aws eks update-kubeconfig --name $cluster --profile $profile --alias $(<add sed/awk logic here for parsing cluster and profile names to create alias>) 
;done 
; done

@elijah-roberts
Copy link
Contributor Author

elijah-roberts commented May 1, 2020

@kyleknap @vz10 FYI, not sure who needs to review this, it does not give me an option to assign.

Let me know if you need anything else from me.

Edit:

Realized I forgot the pr link #5165

@kdaily kdaily added customization Issues related to CLI customizations (located in /awscli/customizations) eks-kubeconfig and removed needs-triage This issue or PR still needs to be triaged. labels Oct 6, 2020
@kdaily
Copy link
Member

kdaily commented Oct 6, 2020

Hi @elijah-roberts, notifying the maintainer of this feature for a review. I can't provide an ETA, but will let you know when I hear back.

@nckturner
Copy link

@elijah-roberts Can you explain what you mean "There is already precedent for overriding the context name by passing an --alias."? Overall I think this makes a lot of sense.

@nckturner
Copy link

Nvm, I understand now. See the PR for my comments that perhaps we should use a --user flag to avoid changing current behavior.

@elijah-roberts
Copy link
Contributor Author

@nckturner that is totally fair.. just added a user-alias flag, and updated tests.

@potto007
Copy link

I just ran into this while working on having two different role configurations for the same EKS cluster... When trying --alias I had expected that the cluster name, context name, and user name would all be assigned the alias... as it's presently implemented, the behavior seems more like a bug than a feature... consider:

I add cluster with k8sDev role to kubeconfig:

aws eks update-kubeconfig --profile <my-sso-profile> --name <my-eks-cluster> --alias test-dev --role-arn 'arn:aws:iam::<myaccountid>:role/k8sDev'
cat ~/.kube/config

####    ~/.kube/config contents    ###
apiVersion: v1
clusters:
- cluster:
    certificate-authority-data: [REDACTED]
    server: [REDACTED]
  name: arn:aws:eks:<myregion>:<myaccountid>:cluster/<clustername>
contexts:
- context:
    cluster: arn:aws:eks:<myregion>:<myaccountid>:cluster/<clustername>
    user: arn:aws:eks:<myregion>:<myaccountid>:cluster/<clustername>
  name: test-dev
current-context: test-dev
kind: Config
preferences: {}
users:
- name: arn:aws:eks:<myregion>:<myaccountid>:cluster/<clustername>
  user:
    exec:
      apiVersion: client.authentication.k8s.io/v1alpha1
      args:
      - --region
      - <myregion>
      - eks
      - get-token
      - --cluster-name
      - <clustername>
      - --role
      - arn:aws:iam::<myaccountid>:role/k8sDev
      command: aws
      env:
      - name: AWS_PROFILE
        value: <my-sso-profile>

####   

Now, I add cluster with k8sAdmin role to kubeconfig:

aws eks update-kubeconfig --profile <my-sso-profile> --name <my-eks-cluster> --alias test-admin --role-arn 'arn:aws:iam::<myaccountid>:role/k8sAdmin'
cat ~/.kube/config

####    ~/.kube/config contents    ###
apiVersion: v1
clusters:
- cluster:
    certificate-authority-data: [REDACTED]
    server: [REDACTED]
  name: arn:aws:eks:<myregion>:<myaccountid>:cluster/<clustername>
contexts:
- context:
    cluster: arn:aws:eks:<myregion>:<myaccountid>:cluster/<clustername>
    user: arn:aws:eks:<myregion>:<myaccountid>:cluster/<clustername>
  name: test-admin
current-context: test-admin
kind: Config
preferences: {}
users:
- name: arn:aws:eks:<myregion>:<myaccountid>:cluster/<clustername>
  user:
    exec:
      apiVersion: client.authentication.k8s.io/v1alpha1
      args:
      - --region
      - <myregion>
      - eks
      - get-token
      - --cluster-name
      - <clustername>
      - --role
      - arn:aws:iam::<myaccountid>:role/k8sAdmin
      command: aws
      env:
      - name: AWS_PROFILE
        value: <my-sso-profile>

####   

What I expected to see in my kubeconfig, which I'm presently doing manually:

apiVersion: v1
clusters:
- cluster:
    certificate-authority-data: [REDACTED]
    server: [REDACTED]
  name: test-admin
- cluster:
    certificate-authority-data: [REDACTED]
    server: [REDACTED]
  name: test-dev
contexts:
- context:
    cluster: test-admin
    user: test-admin
  name: test-admin
- context:
    cluster: test-dev
    user: test-dev
  name: test-dev
current-context: test-dev
kind: Config
preferences: {}
users:
- name: test-admin
  user:
    exec:
      apiVersion: client.authentication.k8s.io/v1alpha1
      args:
      - --region
      - <myregion>
      - eks
      - get-token
      - --cluster-name
      - <clustername>
      - --role
      - arn:aws:iam::<myaccountid>:role/k8sAdmin
      command: aws
      env:
      - name: AWS_PROFILE
        value: <my-sso-profile>
- name: test-dev
  user:
    exec:
      apiVersion: client.authentication.k8s.io/v1alpha1
      args:
      - --region
      - <myregion>
      - eks
      - get-token
      - --cluster-name
      - <clustername>
      - --role
      - arn:aws:iam::<myaccountid>:role/k8sDev
      command: aws
      env:
      - name: AWS_PROFILE
        value: <my-sso-profile>

####   

@kdaily kdaily added pr:needs-review This PR needs a review from a Member. needs-review This issue or pull request needs review from a core team member. and removed pr:needs-review This PR needs a review from a Member. labels Sep 23, 2021
@joshdk
Copy link

joshdk commented Dec 23, 2021

👋🏻 Hello folks. Just ran into this edge-case while trying to configure multiple kubectl contexts for the same cluster, backed by different aws profiles.

Having existing kubeconfig users be overridden was unexpected, and requires manual kubeconfig surgery to properly undo and re-configure.

Having either a --user flag to name the underlying context user, or naming the user based off of the --profile/AWS_PROFILE by default would be very desirable.

Thank you!

@stealthycoin stealthycoin moved this to Ready for Review in AWS CLI Community Contributions Apr 5, 2022
@kdaily kdaily added ready-for-review community and removed needs-review This issue or pull request needs review from a core team member. labels Apr 6, 2022
@tim-finnigan tim-finnigan added the p2 This is a standard priority issue label Nov 9, 2022
stealthycoin pushed a commit to elijah-roberts/aws-cli that referenced this issue Mar 22, 2023
@github-actions
Copy link

⚠️COMMENT VISIBILITY WARNING⚠️

Comments on closed issues are hard for our team to see.
If you need more assistance, please open a new issue that references this one. If you wish to keep having a conversation with other community members under this issue feel free to do so.

mergify bot pushed a commit to aws/aws-cdk that referenced this issue Mar 27, 2023
…k/lambda-layer-awscli (#24800)

Bumps [awscli](https://github.com/aws/aws-cli) from 1.27.94 to 1.27.99.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst">awscli's changelog</a>.</em></p>
<blockquote>
<h1>1.27.99</h1>
<ul>
<li>api-change:<code>cloudwatch</code>: Update cloudwatch command to latest version</li>
<li>api-change:<code>comprehend</code>: This release adds a new field (FlywheelArn) to the EntitiesDetectionJobProperties object. The FlywheelArn field is returned in the DescribeEntitiesDetectionJob and ListEntitiesDetectionJobs responses when the EntitiesDetection job is started with a FlywheelArn instead of an EntityRecognizerArn .</li>
<li>api-change:<code>rds</code>: Added error code CreateCustomDBEngineVersionFault for when the create custom engine version for Custom engines fails.</li>
</ul>
<h1>1.27.98</h1>
<ul>
<li>enhancement:eks: Add user-alias argument to update-kubeconfig command. Implements <code>[#5164](aws/aws-cli#5164) &lt;https://github.com/aws/aws-cli/issues/5164&gt;</code>__</li>
<li>api-change:<code>batch</code>: This feature allows Batch to support configuration of ephemeral storage size for jobs running on FARGATE</li>
<li>api-change:<code>chime-sdk-identity</code>: AppInstanceBots can be used to add a bot powered by Amazon Lex to chat channels.  ExpirationSettings provides automatic resource deletion for AppInstanceUsers.</li>
<li>api-change:<code>chime-sdk-media-pipelines</code>: This release adds Amazon Chime SDK call analytics. Call analytics include voice analytics, which provides speaker search and voice tone analysis. These capabilities can be used with Amazon Transcribe and Transcribe Call Analytics to generate machine-learning-powered insights from real-time audio.</li>
<li>api-change:<code>chime-sdk-messaging</code>: ExpirationSettings provides automatic resource deletion for Channels.</li>
<li>api-change:<code>chime-sdk-voice</code>: This release adds Amazon Chime SDK call analytics. Call analytics include voice analytics, which provides speaker search and voice tone analysis. These capabilities can be used with Amazon Transcribe and Transcribe Call Analytics to generate machine-learning-powered insights from real-time audio.</li>
<li>api-change:<code>codeartifact</code>: Repository CreationTime is added to the CreateRepository and ListRepositories API responses.</li>
<li>api-change:<code>guardduty</code>: Adds AutoEnableOrganizationMembers attribute to DescribeOrganizationConfiguration and UpdateOrganizationConfiguration APIs.</li>
<li>api-change:<code>ivs-realtime</code>: Initial release of the Amazon Interactive Video Service RealTime API.</li>
<li>api-change:<code>mediaconvert</code>: AWS Elemental MediaConvert SDK now supports passthrough of ID3v2 tags for audio inputs to audio-only HLS outputs.</li>
<li>api-change:<code>sagemaker</code>: Amazon SageMaker Autopilot adds two new APIs - CreateAutoMLJobV2 and DescribeAutoMLJobV2. Amazon SageMaker Notebook Instances now supports the ml.geospatial.interactive instance type.</li>
<li>api-change:<code>servicediscovery</code>: Reverted the throttling exception RequestLimitExceeded for AWS Cloud Map APIs introduced in SDK version 1.12.424 2023-03-09 to previous exception specified in the ErrorCode.</li>
<li>api-change:<code>textract</code>: The AnalyzeDocument - Tables feature adds support for new elements in the API: table titles, footers, section titles, summary cells/tables, and table type.</li>
</ul>
<h1>1.27.97</h1>
<ul>
<li>api-change:<code>iam</code>: Documentation updates for AWS Identity and Access Management (IAM).</li>
<li>api-change:<code>iottwinmaker</code>: This release adds support of adding metadata when creating a new scene or updating an existing scene.</li>
<li>api-change:<code>networkmanager</code>: This release includes an update to create-transit-gateway-route-table-attachment, showing example usage for TransitGatewayRouteTableArn.</li>
<li>api-change:<code>pipes</code>: This release improves validation on the ARNs in the API model</li>
<li>api-change:<code>resiliencehub</code>: This release provides customers with the ability to import resources from within an EKS cluster and assess the resiliency of EKS cluster workloads.</li>
<li>api-change:<code>ssm</code>: This Patch Manager release supports creating, updating, and deleting Patch Baselines for AmazonLinux2023, AlmaLinux.</li>
</ul>
<h1>1.27.96</h1>
<ul>
<li>api-change:<code>chime-sdk-messaging</code>: Amazon Chime SDK messaging customers can now manage streaming configuration for messaging data for archival and analysis.</li>
<li>api-change:<code>cleanrooms</code>: GA Release of AWS Clean Rooms, Added Tagging Functionality</li>
<li>api-change:<code>ec2</code>: This release adds support for AWS Network Firewall, AWS PrivateLink, and Gateway Load Balancers to Amazon VPC Reachability Analyzer, and it makes the path destination optional as long as a destination address in the filter at source is provided.</li>
<li>api-change:<code>iotsitewise</code>: Provide support for tagging of data streams and enabling tag based authorization for property alias</li>
<li>api-change:<code>mgn</code>: This release introduces the Import and export feature and expansion of the post-launch actions</li>
</ul>
<h1>1.27.95</h1>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/aws/aws-cli/commit/2b4cfe19e3043e8cab87e3c56f418d7ca423ddbb"><code>2b4cfe1</code></a> Merge branch 'release-1.27.99'</li>
<li><a href="https://github.com/aws/aws-cli/commit/998ac886e9902bab55c11c642e2e04f3af7e365e"><code>998ac88</code></a> Bumping version to 1.27.99</li>
<li><a href="https://github.com/aws/aws-cli/commit/42ec335320f492ff6fe984b21707f34b5cd49507"><code>42ec335</code></a> Update changelog based on model updates</li>
<li><a href="https://github.com/aws/aws-cli/commit/5cccc2151bf754ad02e93fee8bf873f14b3fe524"><code>5cccc21</code></a> Merge pull request <a href="https://redirect.github.com/aws/aws-cli/issues/7774">#7774</a> from stealthycoin/enable-dependabot</li>
<li><a href="https://github.com/aws/aws-cli/commit/5018d0afec9b6c3a042c96920b615748286a93b2"><code>5018d0a</code></a> Merge branch 'release-1.27.98'</li>
<li><a href="https://github.com/aws/aws-cli/commit/2c2c0c4ec47e8fe25491d56e3e9d072b64cc71f3"><code>2c2c0c4</code></a> Merge branch 'release-1.27.98' into develop</li>
<li><a href="https://github.com/aws/aws-cli/commit/be3a2f8427aff89cdd1e396f34f33540023d63b6"><code>be3a2f8</code></a> Bumping version to 1.27.98</li>
<li><a href="https://github.com/aws/aws-cli/commit/075f5293b0508ead08a98bcbdc968cc8884395c5"><code>075f529</code></a> Update changelog based on model updates</li>
<li><a href="https://github.com/aws/aws-cli/commit/ae12ad33ba1059eff0e575e11fbaddc40f72f057"><code>ae12ad3</code></a> Add the rest of cli v2 dependencies to dependabot config</li>
<li><a href="https://github.com/aws/aws-cli/commit/dd48afaaa8b9e682579b1a35109d910ca78aae01"><code>dd48afa</code></a> Merge pull request <a href="https://redirect.github.com/aws/aws-cli/issues/5165">#5165</a> from elijah-roberts/feature/support-creating-usernam...</li>
<li>Additional commits viewable in <a href="https://github.com/aws/aws-cli/compare/1.27.94...1.27.99">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=awscli&package-manager=pip&previous-version=1.27.94&new-version=1.27.99)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
mergify bot pushed a commit to cdklabs/awscdk-asset-awscli that referenced this issue Mar 27, 2023
Bumps [awscli](https://github.com/aws/aws-cli) from 1.27.94 to 1.27.99.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst">awscli's changelog</a>.</em></p>
<blockquote>
<h1>1.27.99</h1>
<ul>
<li>api-change:<code>cloudwatch</code>: Update cloudwatch command to latest version</li>
<li>api-change:<code>comprehend</code>: This release adds a new field (FlywheelArn) to the EntitiesDetectionJobProperties object. The FlywheelArn field is returned in the DescribeEntitiesDetectionJob and ListEntitiesDetectionJobs responses when the EntitiesDetection job is started with a FlywheelArn instead of an EntityRecognizerArn .</li>
<li>api-change:<code>rds</code>: Added error code CreateCustomDBEngineVersionFault for when the create custom engine version for Custom engines fails.</li>
</ul>
<h1>1.27.98</h1>
<ul>
<li>enhancement:eks: Add user-alias argument to update-kubeconfig command. Implements <code>[#5164](aws/aws-cli#5164) &lt;https://github.com/aws/aws-cli/issues/5164&gt;</code>__</li>
<li>api-change:<code>batch</code>: This feature allows Batch to support configuration of ephemeral storage size for jobs running on FARGATE</li>
<li>api-change:<code>chime-sdk-identity</code>: AppInstanceBots can be used to add a bot powered by Amazon Lex to chat channels.  ExpirationSettings provides automatic resource deletion for AppInstanceUsers.</li>
<li>api-change:<code>chime-sdk-media-pipelines</code>: This release adds Amazon Chime SDK call analytics. Call analytics include voice analytics, which provides speaker search and voice tone analysis. These capabilities can be used with Amazon Transcribe and Transcribe Call Analytics to generate machine-learning-powered insights from real-time audio.</li>
<li>api-change:<code>chime-sdk-messaging</code>: ExpirationSettings provides automatic resource deletion for Channels.</li>
<li>api-change:<code>chime-sdk-voice</code>: This release adds Amazon Chime SDK call analytics. Call analytics include voice analytics, which provides speaker search and voice tone analysis. These capabilities can be used with Amazon Transcribe and Transcribe Call Analytics to generate machine-learning-powered insights from real-time audio.</li>
<li>api-change:<code>codeartifact</code>: Repository CreationTime is added to the CreateRepository and ListRepositories API responses.</li>
<li>api-change:<code>guardduty</code>: Adds AutoEnableOrganizationMembers attribute to DescribeOrganizationConfiguration and UpdateOrganizationConfiguration APIs.</li>
<li>api-change:<code>ivs-realtime</code>: Initial release of the Amazon Interactive Video Service RealTime API.</li>
<li>api-change:<code>mediaconvert</code>: AWS Elemental MediaConvert SDK now supports passthrough of ID3v2 tags for audio inputs to audio-only HLS outputs.</li>
<li>api-change:<code>sagemaker</code>: Amazon SageMaker Autopilot adds two new APIs - CreateAutoMLJobV2 and DescribeAutoMLJobV2. Amazon SageMaker Notebook Instances now supports the ml.geospatial.interactive instance type.</li>
<li>api-change:<code>servicediscovery</code>: Reverted the throttling exception RequestLimitExceeded for AWS Cloud Map APIs introduced in SDK version 1.12.424 2023-03-09 to previous exception specified in the ErrorCode.</li>
<li>api-change:<code>textract</code>: The AnalyzeDocument - Tables feature adds support for new elements in the API: table titles, footers, section titles, summary cells/tables, and table type.</li>
</ul>
<h1>1.27.97</h1>
<ul>
<li>api-change:<code>iam</code>: Documentation updates for AWS Identity and Access Management (IAM).</li>
<li>api-change:<code>iottwinmaker</code>: This release adds support of adding metadata when creating a new scene or updating an existing scene.</li>
<li>api-change:<code>networkmanager</code>: This release includes an update to create-transit-gateway-route-table-attachment, showing example usage for TransitGatewayRouteTableArn.</li>
<li>api-change:<code>pipes</code>: This release improves validation on the ARNs in the API model</li>
<li>api-change:<code>resiliencehub</code>: This release provides customers with the ability to import resources from within an EKS cluster and assess the resiliency of EKS cluster workloads.</li>
<li>api-change:<code>ssm</code>: This Patch Manager release supports creating, updating, and deleting Patch Baselines for AmazonLinux2023, AlmaLinux.</li>
</ul>
<h1>1.27.96</h1>
<ul>
<li>api-change:<code>chime-sdk-messaging</code>: Amazon Chime SDK messaging customers can now manage streaming configuration for messaging data for archival and analysis.</li>
<li>api-change:<code>cleanrooms</code>: GA Release of AWS Clean Rooms, Added Tagging Functionality</li>
<li>api-change:<code>ec2</code>: This release adds support for AWS Network Firewall, AWS PrivateLink, and Gateway Load Balancers to Amazon VPC Reachability Analyzer, and it makes the path destination optional as long as a destination address in the filter at source is provided.</li>
<li>api-change:<code>iotsitewise</code>: Provide support for tagging of data streams and enabling tag based authorization for property alias</li>
<li>api-change:<code>mgn</code>: This release introduces the Import and export feature and expansion of the post-launch actions</li>
</ul>
<h1>1.27.95</h1>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/aws/aws-cli/commit/2b4cfe19e3043e8cab87e3c56f418d7ca423ddbb"><code>2b4cfe1</code></a> Merge branch 'release-1.27.99'</li>
<li><a href="https://github.com/aws/aws-cli/commit/998ac886e9902bab55c11c642e2e04f3af7e365e"><code>998ac88</code></a> Bumping version to 1.27.99</li>
<li><a href="https://github.com/aws/aws-cli/commit/42ec335320f492ff6fe984b21707f34b5cd49507"><code>42ec335</code></a> Update changelog based on model updates</li>
<li><a href="https://github.com/aws/aws-cli/commit/5cccc2151bf754ad02e93fee8bf873f14b3fe524"><code>5cccc21</code></a> Merge pull request <a href="https://redirect.github.com/aws/aws-cli/issues/7774">#7774</a> from stealthycoin/enable-dependabot</li>
<li><a href="https://github.com/aws/aws-cli/commit/5018d0afec9b6c3a042c96920b615748286a93b2"><code>5018d0a</code></a> Merge branch 'release-1.27.98'</li>
<li><a href="https://github.com/aws/aws-cli/commit/2c2c0c4ec47e8fe25491d56e3e9d072b64cc71f3"><code>2c2c0c4</code></a> Merge branch 'release-1.27.98' into develop</li>
<li><a href="https://github.com/aws/aws-cli/commit/be3a2f8427aff89cdd1e396f34f33540023d63b6"><code>be3a2f8</code></a> Bumping version to 1.27.98</li>
<li><a href="https://github.com/aws/aws-cli/commit/075f5293b0508ead08a98bcbdc968cc8884395c5"><code>075f529</code></a> Update changelog based on model updates</li>
<li><a href="https://github.com/aws/aws-cli/commit/ae12ad33ba1059eff0e575e11fbaddc40f72f057"><code>ae12ad3</code></a> Add the rest of cli v2 dependencies to dependabot config</li>
<li><a href="https://github.com/aws/aws-cli/commit/dd48afaaa8b9e682579b1a35109d910ca78aae01"><code>dd48afa</code></a> Merge pull request <a href="https://redirect.github.com/aws/aws-cli/issues/5165">#5165</a> from elijah-roberts/feature/support-creating-usernam...</li>
<li>Additional commits viewable in <a href="https://github.com/aws/aws-cli/compare/1.27.94...1.27.99">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=awscli&package-manager=pip&previous-version=1.27.94&new-version=1.27.99)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
elysahall pushed a commit to elysahall/aws-cli that referenced this issue Apr 5, 2023
meyertst-aws pushed a commit to meyertst-aws/aws-cli that referenced this issue Aug 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
community customization Issues related to CLI customizations (located in /awscli/customizations) eks-kubeconfig feature-request A feature should be added or improved. p2 This is a standard priority issue ready-for-review
Projects
Status: Ready for Review
Development

Successfully merging a pull request may close this issue.

6 participants