Skip to content

Commit

Permalink
update license year
Browse files Browse the repository at this point in the history
  • Loading branch information
lingrino committed Jan 17, 2019
1 parent 6b3fb09 commit b281f5c
Show file tree
Hide file tree
Showing 23 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014-2018, Avant, Sean Lingren
Copyright (c) 2014-2019, Avant, Sean Lingren

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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -177,7 +177,7 @@ For ease of use this module requires that you manually enter the AMI ID of the P

This project is licensed under the MIT License:

Copyright (c) 2014-2018, Avant, Sean Lingren
Copyright (c) 2014-2019, Avant, Sean Lingren

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion packer/ansible/roles/vault/files/profile.d_vault.sh
@@ -1,5 +1,5 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

export VAULT_ADDR='http://127.0.0.1:9200'
2 changes: 1 addition & 1 deletion packer/ansible/roles/vault/files/vault.service
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

[Unit]
Description=Vault Server
Expand Down
2 changes: 1 addition & 1 deletion packer/ansible/roles/vault/tasks/main.yml
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

- name: Update all packages
package:
Expand Down
2 changes: 1 addition & 1 deletion packer/ansible/site.yml
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

- name: Configure Vault
hosts: all
Expand Down
2 changes: 1 addition & 1 deletion packer/vault.json.example
@@ -1,7 +1,7 @@
{
"variables": {
"license" : "The MIT License (MIT)",
"copyright" : "Copyright (c) 2014-2018 Avant, Sean Lingren",
"copyright" : "Copyright (c) 2014-2019 Avant, Sean Lingren",
"vault_version": "1.0.2",
"vault_version_checksum": "sha256:5549714c24b61ea77a7afb30e1fbff6ec596cfd39dab7a2e6cf7e71432d616cc",
"builder_region": "us-west-1",
Expand Down
2 changes: 1 addition & 1 deletion terraform/main/providers.tf
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

provider "aws" {
region = "${ var.region }"
Expand Down
2 changes: 1 addition & 1 deletion terraform/main/terraform.tfvars.example
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

############################
## Environment #############
Expand Down
2 changes: 1 addition & 1 deletion terraform/main/variables.tf
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

############################
## Environment #############
Expand Down
2 changes: 1 addition & 1 deletion terraform/main/vault.tf
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

module "vault" {
source = "../modules/vault"
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/vault/alb.tf
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

resource "aws_lb" "alb" {
name = "${ replace( var.name_prefix, "_", "-" ) }"
Expand Down
4 changes: 2 additions & 2 deletions terraform/modules/vault/config.tf
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

# Upload config to S3
resource "aws_s3_bucket_object" "object" {
Expand All @@ -12,6 +12,6 @@ resource "aws_s3_bucket_object" "object" {
# Depends on both buckets because we don't want to place until replication is set up
depends_on = [
"aws_s3_bucket.vault_resources",
"aws_s3_bucket.vault_resources_dr"
"aws_s3_bucket.vault_resources_dr",
]
}
2 changes: 1 addition & 1 deletion terraform/modules/vault/data.tf
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

# Returns the account ID that is calling the terraform
data "aws_caller_identity" "current" {}
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/vault/ec2.tf
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

resource "aws_launch_template" "lt" {
name_prefix = "${ var.name_prefix }-"
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/vault/files/config.hcl
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

cluster_name = "${ name_prefix }"
max_lease_ttl = "192h" # One week
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/vault/files/userdata.sh
Expand Up @@ -2,7 +2,7 @@

# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

# Get the Instance ID
INSTANCE_ID=$(curl http://169.254.169.254/latest/meta-data/instance-id)
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/vault/iam.tf
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

############################
## S3 ######################
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/vault/policies.tf
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

############################
## S3 ######################
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/vault/providers.tf
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

provider "aws" {
alias = "dr"
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/vault/s3.tf
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

resource "aws_s3_bucket" "vault_resources" {
bucket = "${ var.vault_resources_bucket_name }"
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/vault/sgs.tf
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

############################
## ALB #####################
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/vault/variables.tf
@@ -1,6 +1,6 @@
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 Avant, Sean Lingren
# Copyright (c) 2014-2019 Avant, Sean Lingren

############################
## Environment #############
Expand Down

0 comments on commit b281f5c

Please sign in to comment.