Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
Merge pull request #54 from aws-quickstart/eks-job-prework
Browse files Browse the repository at this point in the history
Fix blog assets, add missing params
  • Loading branch information
gargana authored Jun 20, 2022
2 parents 4c88d42 + 3d9d372 commit 995921d
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ Parameters:
JobName:
Type: String
Default: 'job-example'
AvailabilityZones:
Description: List of Availability Zones to use for the subnets in the VPC. Three
Availability Zones are used for this deployment.
Type: List<AWS::EC2::AvailabilityZone::Name> AvailabilityZones:
NumberOfAZs:
Type: String
AllowedValues: ["2", "3"]
Default: "2"
Description: Number of Availability Zones to use in the VPC. This must match the value entered for the AvailabilityZones parameter.
PreworkScriptBucket:
Type: String
Default: 'aws-quickstart'
Expand All @@ -24,7 +33,8 @@ Resources:
QSS3KeyPrefix: quickstart-amazon-eks/
# Cluster properties
ProvisionBastionHost: Enabled
AccessCIDR: !Ref AccessCIDR
RemoteAccessCIDR: !Ref AccessCIDR
AvailabilityZones: !Join [ ',', !Ref 'AvailabilityZones' ]
NodeInstanceType: t3.large
NumberOfNodes: 1
MaxNumberOfNodes: 1
Expand Down

0 comments on commit 995921d

Please sign in to comment.