This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Original | |
git_original_uri: # Fill in URI | |
git_original_branch: master # Change if need be | |
git_original_private_key: # Fill in SSH key | |
# Mirror | |
git_mirror_uri: # Fill in URI | |
git_mirror_branch: master # Change if need be | |
git_mirror_private_key: # Fill in SSH key |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: '3' | |
services: | |
ssh_server: | |
image: mcareysolstice/ssh | |
ports: | |
- "2222:22" | |
volumes: | |
- ./id_rsa.pub:/root/.ssh/authorized_keys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Resources: | |
ImageBuildRecipe: | |
Type: AWS::ImageBuilder::ImageRecipe | |
UpdateReplacePolicy: Retain | |
Properties: | |
Name: cause-500-error | |
Version: 1.0.0 | |
Description: Causes a 500 Internal Server Error because there are duplicate components. | |
Components: | |
- ComponentArn: "arn:aws:imagebuilder:us-east-1:aws:component/update-linux/1.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
### BEGIN INIT INFO | |
# Provides: <service name> | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: <service description> | |
### END INIT INFO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "Fluffy", | |
"declawed": false | |
}, | |
{ | |
"name": "Muffins", | |
"declawed": true | |
} | |
] |