Skip to content

Commit

Permalink
Bump dependencies (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwittig authored Jun 9, 2022
1 parent 08782c4 commit 5da6eef
Show file tree
Hide file tree
Showing 35 changed files with 316 additions and 120 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:

- name: yamlllint
run: |
pip install yamllint==1.24.2
pip install yamllint==1.26.3
find examples -type f -name example.yml | while read file; do set -ex && yamllint "$file"; done;
- name: cfn-lint
run: |
pip install cfn-lint==0.34.0
pip install cfn-lint==0.59.1
find examples -type f -name example.yml | while read file; do set -ex && cfn-lint -t "$file"; done;
- name: license
Expand Down
8 changes: 4 additions & 4 deletions examples/asg-singleton-ssm/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/asg-singleton-ssm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"private": true,
"dependencies": {
"@cfn-modules/alerting": "1.2.2",
"@cfn-modules/vpc": "1.3.0",
"@cfn-modules/vpc": "1.3.1",
"@cfn-modules/asg-singleton-amazon-linux2": "2.3.0"
}
}
1 change: 0 additions & 1 deletion examples/ec2-ebs/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ Resources:
Parameters:
VpcModule: !GetAtt 'Vpc.Outputs.StackName'
AlertingModule: !GetAtt 'Alerting.Outputs.StackName'
IAMUserSSHAccess: 'true'
VolumeModule1: !GetAtt 'Volume.Outputs.StackName'
AmazonLinuxVersion: '2018.03.0.20181116'
TemplateURL: './node_modules/@cfn-modules/ec2-instance-amazon-linux/module.yml'
Expand Down
8 changes: 4 additions & 4 deletions examples/ec2-ebs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/ec2-ebs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"private": true,
"dependencies": {
"@cfn-modules/alerting": "1.2.2",
"@cfn-modules/vpc": "1.3.0",
"@cfn-modules/vpc": "1.3.1",
"@cfn-modules/ebs-volume": "1.2.0",
"@cfn-modules/ec2-instance-amazon-linux": "2.4.0"
}
Expand Down
1 change: 0 additions & 1 deletion examples/ec2-efs/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ Resources:
Parameters:
VpcModule: !GetAtt 'Vpc.Outputs.StackName'
AlertingModule: !GetAtt 'Alerting.Outputs.StackName'
IAMUserSSHAccess: 'true'
ClientSgModule1: !GetAtt 'ClientSg.Outputs.StackName'
FileSystemModule1: !GetAtt 'FileSystem.Outputs.StackName'
AmazonLinuxVersion: '2018.03.0.20181116'
Expand Down
14 changes: 7 additions & 7 deletions examples/ec2-efs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/ec2-efs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"private": true,
"dependencies": {
"@cfn-modules/alerting": "1.2.2",
"@cfn-modules/vpc": "1.3.0",
"@cfn-modules/efs-file-system": "1.2.0",
"@cfn-modules/vpc": "1.3.1",
"@cfn-modules/efs-file-system": "1.3.0",
"@cfn-modules/client-sg": "1.0.0",
"@cfn-modules/ec2-instance-amazon-linux": "2.4.0"
}
Expand Down
1 change: 0 additions & 1 deletion examples/ec2-mysql/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ Resources:
Parameters:
VpcModule: !GetAtt 'Vpc.Outputs.StackName'
AlertingModule: !GetAtt 'Alerting.Outputs.StackName'
IAMUserSSHAccess: 'true'
UserData: |
yum install -y httpd24 php70 php70-mysqlnd
wget -O /var/www/html/index.php https://github.com/vrana/adminer/releases/download/v4.6.3/adminer-4.6.3.php
Expand Down
8 changes: 4 additions & 4 deletions examples/ec2-mysql/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/ec2-mysql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"private": true,
"dependencies": {
"@cfn-modules/alerting": "1.2.2",
"@cfn-modules/vpc": "1.3.0",
"@cfn-modules/vpc": "1.3.1",
"@cfn-modules/rds-mysql": "1.3.0",
"@cfn-modules/client-sg": "1.0.0",
"@cfn-modules/ec2-instance-amazon-linux": "2.4.0"
Expand Down
3 changes: 2 additions & 1 deletion examples/ec2-postgres/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,18 @@ Resources:
VpcModule: !GetAtt 'Vpc.Outputs.StackName'
ClientSgModule: !GetAtt 'ClientSg.Outputs.StackName'
AlertingModule: !GetAtt 'Alerting.Outputs.StackName'
DBInstanceClass: 'db.t3.micro '
DBMasterUserPassword: insecure
DBBackupRetentionPeriod: '0' # speed up the example (do not set to 0 in production!)
DBMultiAZ: 'false' # speed up the example (do not set to false in production!)
EngineVersion: '14.2'
TemplateURL: './node_modules/@cfn-modules/rds-postgres/module.yml'
Instance:
Type: 'AWS::CloudFormation::Stack'
Properties:
Parameters:
VpcModule: !GetAtt 'Vpc.Outputs.StackName'
AlertingModule: !GetAtt 'Alerting.Outputs.StackName'
IAMUserSSHAccess: 'true'
UserData: |
yum install -y httpd24 php70 php70-pgsql
wget -O /var/www/html/index.php https://github.com/vrana/adminer/releases/download/v4.6.3/adminer-4.6.3.php
Expand Down
98 changes: 90 additions & 8 deletions examples/ec2-postgres/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/ec2-postgres/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"private": true,
"dependencies": {
"@cfn-modules/alerting": "1.2.2",
"@cfn-modules/vpc": "1.3.0",
"@cfn-modules/rds-postgres": "1.3.0",
"@cfn-modules/vpc": "1.3.1",
"@cfn-modules/rds-postgres": "1.4.0",
"@cfn-modules/client-sg": "1.0.0",
"@cfn-modules/ec2-instance-amazon-linux": "2.4.0"
}
Expand Down
2 changes: 0 additions & 2 deletions examples/ec2-ssh-bastion/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ Resources:
VpcModule: !GetAtt 'Vpc.Outputs.StackName'
AlertingModule: !GetAtt 'Alerting.Outputs.StackName'
HostedZoneModule: !GetAtt 'HostedZone.Outputs.StackName'
IAMUserSSHAccess: 'true'
TemplateURL: './node_modules/@cfn-modules/ssh-bastion/module.yml'
Instance:
Type: 'AWS::CloudFormation::Stack'
Expand All @@ -55,7 +54,6 @@ Resources:
AlertingModule: !GetAtt 'Alerting.Outputs.StackName'
BastionModule: !GetAtt 'Bastion.Outputs.StackName'
HostedZoneModule: !GetAtt 'HostedZone.Outputs.StackName'
IAMUserSSHAccess: 'true'
AmazonLinuxVersion: '2018.03.0.20181116'
TemplateURL: './node_modules/@cfn-modules/ec2-instance-amazon-linux/module.yml'
Outputs:
Expand Down
8 changes: 4 additions & 4 deletions examples/ec2-ssh-bastion/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/ec2-ssh-bastion/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"private": true,
"dependencies": {
"@cfn-modules/alerting": "1.2.2",
"@cfn-modules/vpc": "1.3.0",
"@cfn-modules/vpc": "1.3.1",
"@cfn-modules/ec2-instance-amazon-linux": "2.4.0",
"@cfn-modules/route53-hosted-zone-public": "1.0.0",
"@cfn-modules/ssh-bastion": "1.4.4"
Expand Down
8 changes: 4 additions & 4 deletions examples/ec2-ssm/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5da6eef

Please sign in to comment.