See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
mongodump --host localhost --db execution -c executionLog --out /mnt/mongodumps/ |
resource "aws_instance" "lb" { | |
disable_api_termination = false | |
count = "${var.lb_instances_count}" | |
ami = "${var.lb_ami_id}" | |
instance_type = "${var.lb_ami_type}" | |
tags { | |
Name = "${format("lb%d-%s", count.index+1, var.environment)}" | |
} | |
vpc_security_group_ids = [ "${aws_security_group.main.id}", "${aws_security_group.lb.id}"] | |
subnet_id = "${aws_subnet.a.id}" |
#!/bin/bash | |
CONSUL="localhost:8500" | |
main() { | |
case "$1" in | |
info) | |
curl -s "$CONSUL/v1/kv/$2" | jq -r .[] | |
;; | |
get) |
namespace :secret do | |
desc "Edit an encrypted data bag item in EDITOR" | |
task :edit, :item do |t, args| | |
unless ENV['EDITOR'] | |
puts "No EDITOR found. Try:" | |
puts "export EDITOR=vim" | |
exit 1 | |
end | |
abort 'usage: rake "secret:edit[<item name>]"' unless args.item |