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
// AWS provides a JMS library for SQS: https://aws.amazon.com/blogs/developer/using-amazon-sqs-with-spring-boot-and-spring-jms/ | |
// I wanted to use that setup in a Spring Boot app, and to run some tests against an in-memory | |
// ElasticMQ queue, which is SQS (and AWS Java SDK) compatible. In case your scenario is EXACTLY like mine ... here you go | |
@RunWith(SpringRunner.class) | |
@SpringBootTest | |
// This annotation is important: Forces the Application Context (and SQS connections) to reset between tests. ElasticMQ will fail to | |
// stop if there are active connections. | |
@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_EACH_TEST_METHOD) | |
public class ApplicationTests { |
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
# Get package updates | |
sudo yum update -y | |
# Check if docker installed | |
installed=`yum list installed | grep docker` | |
if [[ -z "${installed}" ]]; then | |
# Docker install steps required for AMI (Amazon Linux) | |
sudo yum install docker -y | |
sudo service docker start |
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
Facter.add(:ec2_availability_zone) do | |
setcode do | |
Facter::Core::Execution.exec('curl -s http://169.254.169.254/latest/meta-data/placement/availability-zone') | |
end | |
end | |
Facter.add(:aws_region) do | |
setcode do | |
az = Facter.value(:ec2_availability_zone) | |
az[0..-2] |
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
--- | |
:backends: | |
- yaml | |
:yaml: | |
:datadir: "/root/init/datadir" | |
:hierarchy: | |
- custom | |
- "hosts/%{::aws_cloudformation_logical_id}" | |
- common |
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 -v | |
echo "Updating packages" | |
yum update -y | |
echo "Installing yum packages" | |
yum install -y rubygems git puppet3 | |
echo "Installing rubygems" | |
gem install r10k hiera-eyaml hiera-eyaml-kms |
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
"BuildServer" : { | |
"Type" : "AWS::EC2::Instance", | |
"DependsOn" : "AttachGateway", | |
"Metadata" : { | |
"AWS::CloudFormation::Init" : { | |
"config" : { | |
"sources" : { | |
"/root" : "https://github.com/bryantrobbins/standard-aws/tarball/master" | |
}, | |
"files" : { |
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 -v | |
# Add your app build steps here | |
# Assume that these steps produce a "dist" folder at this level | |
# Prepare packer variables | |
repoName=$1 | |
imageVersion=$2 | |
chmod 700 fetch.sh | |
./fetch.sh $repoName $imageVersion > variables.json |
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
# I am a novice at R, so please forgive this example. | |
# After hours of Google-ing, tweaking, and trying a bunch of stuff, this was the only | |
# way I could come up with for constructing a set of columns to be dropped from a data.table, | |
# then dropping those columns. | |
# | |
# I expect that any R pros that stumble across this may have comments. Please feel free to suggest edits/leave comments. | |
# | |
# Library loading | |
library('data.table') |
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
apply plugin: 'java' | |
apply plugin: 'maven' | |
apply plugin: 'groovy' | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
compile 'org.codehaus.groovy:groovy-all:2.3.8' |
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
apply plugin: 'java' | |
apply plugin: 'maven' | |
apply plugin: 'groovy' | |
import org.apache.commons.io.IOUtils | |
import org.apache.commons.io.FileUtils | |
import static com.xlson.groovycsv.CsvParser.parseCsv | |
// Load properties or defaults | |
def min_gamma_val = hasProperty('min_gamma') ? min_gamma : '' |
NewerOlder