Skip to content

Commit

Permalink
Fix short EKS cluster names (ansible-collections#818)
Browse files Browse the repository at this point in the history
Fix short EKS cluster names

SUMMARY
Fixes ansible-collections#817
ISSUE TYPE


Bugfix Pull Request

COMPONENT NAME

aws_eks
ADDITIONAL INFORMATION

Reviewed-by: Alina Buzachis <None>
Reviewed-by: None <None>
  • Loading branch information
markuman authored and abikouo committed Sep 18, 2023
1 parent 888000a commit 5368ec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws_eks_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def ensure_present(client, module):
resourcesVpcConfig=dict(
subnetIds=subnets,
securityGroupIds=groups),
clientRequestToken='ansible-create-%s' % name)
)
if module.params['version']:
params['version'] = module.params['version']
cluster = client.create_cluster(**params)['cluster']
Expand Down

0 comments on commit 5368ec6

Please sign in to comment.