$ chef ...
Usage:
This file contains hidden or 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
| # -------- | |
| # Hardware | |
| # -------- | |
| # Opcode - operational code | |
| # Assebly mnemonic - abbreviation for an operation | |
| # Instruction Code Format (IA-32) | |
| # - Optional instruction prefix | |
| # - Operational code |
This file contains hidden or 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
| #!groovy | |
| # Best of Jenkinsfile | |
| # `Jenkinsfile` is a groovy script DSL for defining CI/CD workflows for Jenkins | |
| node { | |
| } |
This file contains hidden or 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
| Description: CloudFront Functions Demo | |
| # This example shows how to use CloudFront, CloudFront Functions, and CloudFormation. | |
| # In this simple example we setup CloudFront so that on any request we redirect to another site. | |
| # While basic, this example can be expanded to provide typical redirect scenarios, based | |
| # on the event passed to the function. | |
| # This example written by Mike Roberts (https://twitter.com/mikebroberts), Symphonia. | |
| # For more ideas about using AWS more effectively,see our blog at https://blog.symphonia.io/ |
This file contains hidden or 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
| Description: > | |
| Script to create a SSL certificate, S3 bucket and Cloudfront distribution. | |
| ############################################################################### | |
| Parameters: | |
| ############################################################################### | |
| DomainName: | |
| Type: String | |
| Description: The domain name. |
This file contains hidden or 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
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: > | |
| A template to deploy CloudFront stack | |
| Parameters: | |
| StackTypeParameter: | |
| Type: String | |
| AllowedValues: | |
| - tst | |
| - staging | |
| - www |
This file contains hidden or 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
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: > | |
| A template to deploy CloudFront stack | |
| Parameters: | |
| StackTypeParameter: | |
| Type: String | |
| AllowedValues: | |
| - tst | |
| - staging | |
| - www |
This file contains hidden or 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
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: > | |
| A template to deploy CloudFront stack | |
| Parameters: | |
| StackTypeParameter: | |
| Type: String | |
| AllowedValues: | |
| - tst | |
| - staging | |
| - www |
This file contains hidden or 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
| ''' | |
| The MIT License (MIT) | |
| Copyright (C) 2014, 2015 Seven Watt <info@sevenwatt.com> | |
| <http://www.sevenwatt.com> | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
| The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
NewerOlder