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_cluster should be able to upgrade cluster versions #2053

Open
1 task done
davidfox79 opened this issue Feb 7, 2024 · 0 comments
Open
1 task done

eks_cluster should be able to upgrade cluster versions #2053

davidfox79 opened this issue Feb 7, 2024 · 0 comments

Comments

@davidfox79
Copy link

Summary

I created a cluster using the eks_cluster module. Now I want to be able to define a new state in terms of the verion of the cluster (1.24 -> 1.25 for example. Changing the value should result in a cluster upgrade. This would provide us with an idempotent way of maintaining the desired state of the cluster

Issue Type

Feature Idea

Component Name

eks_cluster

Additional Information

  hosts: localhost
  gather_facts: no
  connection: local
  tasks:
    - name: Create an EKS cluster
      community.aws.eks_cluster:
        name: "{{ cluster_name }}"
        version: 1.25
        role_arn: "{{ rarn }}"
        region: "{{ region }}"
        subnets: "{{ subnets }}"
        security_groups: "{{ sgs }}"
        wait: true

Code of Conduct

  • I agree to follow the Ansible Code of Conduct
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant