Skip to content

Commit e52fd96

Browse files
committed
(fix) fixing typo
1 parent a6c546b commit e52fd96

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,10 @@ This action requires the following minimum set of permissions:
6767
6868
You want to run your microservices with [Amazon Elastic Kubernetes Services](https://aws.amazon.com/eks/) and leverage the best-practices to run the cluster? Using this GitHub Action you can customize and deploy the [modular and scalable Amazon EKS architecture](https://aws.amazon.com/quickstart/architecture/amazon-eks/) provided in an AWS Quick Start to your AWS Account. The following workflow enables you to create and update a Kubernetes cluster using a manual workflow trigger.
6969
70+
You only have to create an [Amazon EC2 key pair](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html) to run this workflow.
71+
7072
```yaml
71-
name: cluster
73+
name: Deploy Cluster
7274
7375
on:
7476
workflow_dispatch:
@@ -77,9 +79,12 @@ on:
7779
description: 'AWS Region'
7880
required: true
7981
default: 'eu-west-1'
82+
keypair:
83+
description: 'SSH Key Pair'
84+
required: true
8085
8186
jobs:
82-
amplify:
87+
cluster:
8388
name: Deploy stack to AWS
8489
runs-on: ubuntu-latest
8590
outputs:
@@ -105,7 +110,7 @@ jobs:
105110
echo "Environment name: $ENVIRONMENT"
106111
echo "::set-output name=environment::$ENVIRONMENT"
107112
108-
- name: Deploy to EKS Cluster
113+
- name: Deploy Amazon EKS Cluster
109114
id: eks-cluster
110115
uses: aws-actions/aws-cloudformation-github-deploy@master
111116
with:

0 commit comments

Comments
 (0)