Skip to content
This repository was archived by the owner on Aug 5, 2025. It is now read-only.

Commit 7d40ecc

Browse files
authored
Merge pull request #74 from chef-customers/gsreynolds/update_amis_fix_lint
Version 5.1.1
2 parents 09229b7 + 2abf12d commit 7d40ecc

9 files changed

+37
-34
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ You can launch this stack with the push of a button:
3737

3838
| Edition | Version | Est Monthly cost | Launch button |
3939
| ------- | ------- | ---------------- | ------------- |
40-
| High Performance | 5.1.0 | [$1500*](https://calculator.s3.amazonaws.com/index.html#r=IAD&s=EC2&key=calc-E9251374-D80C-45B7-BED7-C9C9778B1D6C) | <p><a href="https://console.aws.amazon.com/cloudformation/home#/stacks/new?templateURL=https:%2F%2Fs3.amazonaws.com%2Faws-native-chef-server%2F5.1.0%2Fmain.yaml&amp;stackName=my-chef-stack" target="_blank"><img src="https://s3.amazonaws.com/cloudformation-examples/cloudformation-launch-stack.png" alt="Launch Stack" /></a></p> |
41-
| Lowest Cost | 5.1.0 | [$320*](https://calculator.s3.amazonaws.com/index.html#r=IAD&s=EC2&key=files/calc-165638db8e331664846c0d6654d743377bd3eac6&v=ver20190604sQ) | <p><a href="https://console.aws.amazon.com/cloudformation/home#/stacks/new?templateURL=https:%2F%2Fs3.amazonaws.com%2Faws-native-chef-server%2F5.1.0%2Fmarketplace.yaml&amp;stackName=my-chef-stack" target="_blank"><img src="https://s3.amazonaws.com/cloudformation-examples/cloudformation-launch-stack.png" alt="Launch Stack" /></a></p> |
40+
| High Performance | 5.1.1 | [$1500*](https://calculator.s3.amazonaws.com/index.html#r=IAD&s=EC2&key=calc-E9251374-D80C-45B7-BED7-C9C9778B1D6C) | <p><a href="https://console.aws.amazon.com/cloudformation/home#/stacks/new?templateURL=https:%2F%2Fs3.amazonaws.com%2Faws-native-chef-server%2F5.1.1%2Fmain.yaml&amp;stackName=my-chef-stack" target="_blank"><img src="https://s3.amazonaws.com/cloudformation-examples/cloudformation-launch-stack.png" alt="Launch Stack" /></a></p> |
41+
| Lowest Cost | 5.1.1 | [$320*](https://calculator.s3.amazonaws.com/index.html#r=IAD&s=EC2&key=files/calc-165638db8e331664846c0d6654d743377bd3eac6&v=ver20190604sQ) | <p><a href="https://console.aws.amazon.com/cloudformation/home#/stacks/new?templateURL=https:%2F%2Fs3.amazonaws.com%2Faws-native-chef-server%2F5.1.1%2Fmarketplace.yaml&amp;stackName=my-chef-stack" target="_blank"><img src="https://s3.amazonaws.com/cloudformation-examples/cloudformation-launch-stack.png" alt="Launch Stack" /></a></p> |
4242

4343
_*NOTE: Estimated costs are just that, your mileage will vary. Use reserved instances to greatly reduce costs for long-running clusters._
4444

@@ -48,7 +48,7 @@ However, the most repeatable and least error-prone way to launch this stack is t
4848
```bash
4949
MYBUCKET=aws-native-chef-server
5050
MYID=mycompany
51-
VERSION=5.1.0
51+
VERSION=5.1.1
5252
EDITION=main # main or marketplace
5353
# Configure the automate_stack_parameters.json and then launch the cloudformation stack:
5454
# If you're using your own bucket, uncomment the next line:
@@ -69,7 +69,7 @@ If you've made changes to the template content or parameters and you wish to upd
6969
```bash
7070
MYBUCKET=aws-native-chef-server
7171
MYID=mycompany
72-
VERSION=5.1.0
72+
VERSION=5.1.1
7373
EDITION=main # main or marketplace
7474
# If you're using your own bucket, uncomment the next line:
7575
# aws s3 sync . s3://$MYBUCKET/$VERSION/ --exclude "*" --include "*.yaml" --include "files/*" && \

automate.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AWSTemplateFormatVersion: '2010-09-09'
2-
Description: AWS Native Automate 2 (auto-recovering standalone) v5.1.0
2+
Description: AWS Native Automate 2 (auto-recovering standalone) v5.1.1
33

44
Parameters:
55
# Required Parameters
@@ -443,7 +443,7 @@ Resources:
443443
Name: !Sub ${Route53RecordName}.${Route53HostedZone}.
444444
Comment: !Sub Created by Cloudformation ${AWS::StackName}
445445
Type: CNAME
446-
TTL: '900'
446+
TTL: 900
447447
ResourceRecords:
448448
- !GetAtt ChefALB.DNSName
449449

chef_elasticsearch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AWSTemplateFormatVersion: '2010-09-09'
2-
Description: Chef Server Elasticsearch 5.1.0
2+
Description: Chef Server Elasticsearch 5.1.1
33

44
Parameters:
55
# Required Parameters

chef_rds.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AWSTemplateFormatVersion: '2010-09-09'
2-
Description: Chef Server PostgreSQL v5.1.0
2+
Description: Chef Server PostgreSQL v5.1.1
33

44
Parameters:
55
# Required Parameters
@@ -107,6 +107,7 @@ Resources:
107107
DBPostgres:
108108
Type: AWS::RDS::DBInstance
109109
DeletionPolicy: 'Snapshot'
110+
UpdateReplacePolicy: 'Snapshot'
110111
Properties:
111112
DBName: chef
112113
AllocatedStorage: !Ref DBAllocatedStorage

chef_server_ha.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AWSTemplateFormatVersion: '2010-09-09'
2-
Description: AWS Native Chef Server (auto-scaling HA) v5.1.0
2+
Description: AWS Native Chef Server (auto-scaling HA) v5.1.1
33

44
Parameters:
55
# Required Parameters
@@ -194,7 +194,7 @@ Parameters:
194194
Type: String
195195
TemplateVersion:
196196
Type: String
197-
Default: "5.1.0"
197+
Default: "5.1.1"
198198

199199
Metadata:
200200
cfn-lint:
@@ -768,7 +768,7 @@ Resources:
768768
Name: !Sub ${Route53RecordName}.${Route53HostedZone}.
769769
Comment: !Sub Created by Cloudformation ${AWS::StackName}
770770
Type: CNAME
771-
TTL: '900'
771+
TTL: 900
772772
ResourceRecords:
773773
- !GetAtt ChefALB.DNSName
774774

chef_server_ops_dashboard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AWSTemplateFormatVersion: '2010-09-09'
2-
Description: AWS Native OpsDashboard for Chef Server v5.1.0
2+
Description: AWS Native OpsDashboard for Chef Server v5.1.1
33

44
Parameters:
55
# Required Parameters

main.yaml

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AWSTemplateFormatVersion: '2010-09-09'
2-
Description: AWS Native Chef Stack v5.1.0
2+
Description: AWS Native Chef Stack v5.1.1
33

44
Parameters:
55
# Required Parameters
@@ -210,7 +210,7 @@ Parameters:
210210
TemplateVersion:
211211
Description: The version of this template to use (do not change this unless directed by support)
212212
Type: String
213-
Default: "5.1.0"
213+
Default: "5.1.1"
214214
Route53HostedZone:
215215
Type: String
216216
Default: ''
@@ -301,37 +301,37 @@ Conditions:
301301
Mappings:
302302
AMI:
303303
eu-north-1:
304-
centos: ami-0b9af355d644500ce
304+
centos: ami-0de88f7d3919bff01
305305
ap-south-1:
306-
centos: ami-0d55d5856a64a8918
306+
centos: ami-059bf998ba0404d35
307307
eu-west-3:
308-
centos: ami-0dedf3f53f2557591
308+
centos: ami-0e8657ef6fd01114c
309309
eu-west-2:
310-
centos: ami-04c86e4a44288c442
310+
centos: ami-090e9e25c26e324dc
311311
eu-west-1:
312-
centos: ami-0b34ea9402583cc17
312+
centos: ami-05541e1e65a2a6868
313313
ap-northeast-2:
314-
centos: ami-021ab66ea3552f872
314+
centos: ami-0636a9282805012e8
315315
ap-northeast-1:
316-
centos: ami-083a80ec77b6c48f5
316+
centos: ami-01eb50a7f6ce094b5
317317
sa-east-1:
318-
centos: ami-034441c2a437922b1
318+
centos: ami-01b61c53105334e65
319319
ca-central-1:
320-
centos: ami-0fae7558a8c3d4683
320+
centos: ami-0fb915e2d57f91cb1
321321
ap-southeast-1:
322-
centos: ami-073d575257d1d42ea
322+
centos: ami-083596ab63a3b17e8
323323
ap-southeast-2:
324-
centos: ami-0595dd171f0627906
324+
centos: ami-0d2308a0967f38960
325325
eu-central-1:
326-
centos: ami-0ad4e9dfe9704c7a5
326+
centos: ami-0d4a4ed0028a0e83d
327327
us-east-1:
328-
centos: ami-093b02d3970c7616d
328+
centos: ami-0833fccd37e8e6a76
329329
us-east-2:
330-
centos: ami-0aa5e3a0d1fda1498
330+
centos: ami-0f91e3dd35f959c96
331331
us-west-1:
332-
centos: ami-08e6c19ae4c1a2267
332+
centos: ami-0d42cc58c730139c2
333333
us-west-2:
334-
centos: ami-01ddf45199de44e71
334+
centos: ami-069a77779bcf7529d
335335

336336
Resources:
337337
ChefRole:
@@ -399,6 +399,7 @@ Resources:
399399
Condition: CreateChefSecretsBucket
400400
Type: AWS::S3::Bucket
401401
DeletionPolicy: Retain
402+
UpdateReplacePolicy: Retain
402403
Properties:
403404
AccessControl: Private
404405
VersioningConfiguration:

marketplace.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AWSTemplateFormatVersion: '2010-09-09'
2-
Description: AWS Native Chef Stack for Marketplace v5.1.0
2+
Description: AWS Native Chef Stack for Marketplace v5.1.1
33

44
Parameters:
55
# Required Parameters
@@ -198,7 +198,7 @@ Parameters:
198198
TemplateVersion:
199199
Description: The version of this template to use (do not change this unless directed by support)
200200
Type: String
201-
Default: "5.1.0"
201+
Default: "5.1.1"
202202
LogsRetentionInDays:
203203
Description: Specifies the number of days you want to retain cloudwatch log events.
204204
Type: Number
@@ -374,6 +374,7 @@ Resources:
374374
ChefBucket:
375375
Type: AWS::S3::Bucket
376376
DeletionPolicy: Retain
377+
UpdateReplacePolicy: Retain
377378
Properties:
378379
AccessControl: Private
379380
VersioningConfiguration:

supermarket.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AWSTemplateFormatVersion: '2010-09-09'
2-
Description: AWS Native Supermarket (auto-recovering standalone) v5.1.0
2+
Description: AWS Native Supermarket (auto-recovering standalone) v5.1.1
33

44
Parameters:
55
# Required Parameters
@@ -379,7 +379,7 @@ Resources:
379379
Name: !Sub ${Route53RecordName}.${Route53HostedZone}.
380380
Comment: !Sub Created by Cloudformation ${AWS::StackName}
381381
Type: CNAME
382-
TTL: '900'
382+
TTL: 900
383383
ResourceRecords:
384384
- !GetAtt ChefALB.DNSName
385385

0 commit comments

Comments
 (0)