Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[COMPLIANCE] Add Copyright and License Headers #86

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions assets/setup-web.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#!/usr/bin/env sh
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0


cp /tmp/assets/webapp /usr/local/bin/
chmod +x /usr/local/bin/*
Expand Down
3 changes: 3 additions & 0 deletions getting-started/azure/main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

# Configure the provider
provider "azurerm" {
version = "=1.20.0"
Expand Down
3 changes: 3 additions & 0 deletions getting-started/gcp/main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

provider "google" {
credentials = file("<NAME>.json")

Expand Down
3 changes: 3 additions & 0 deletions getting-started/gcp/outputs.tf
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

# Output definitions go here
3 changes: 3 additions & 0 deletions getting-started/gcp/variables.tf
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

# Variable definitions go here
3 changes: 3 additions & 0 deletions getting-started/gcp/versions.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0


terraform {
required_version = ">= 0.12"
Expand Down
3 changes: 3 additions & 0 deletions getting-started/tfc/main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

// terraform {
// backend "remote" {
// organization = "my-organization"
Expand Down
3 changes: 3 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

provider "aws" {
access_key = ""
secret_key = ""
Expand Down
5 changes: 5 additions & 0 deletions webapp/assets/app.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/

var data = [{ date: new Date(), value: 1 }];
var ids = {};

Expand Down
5 changes: 5 additions & 0 deletions webapp/assets/dependencies/jquery-3.2.1.min.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions webapp/assets/dependencies/metricsgraphics.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/

.mg-active-datapoint {
fill: black;
font-size: 0.9rem;
Expand Down
5 changes: 5 additions & 0 deletions webapp/assets/dependencies/metricsgraphics.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/

(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(['d3'], factory);
Expand Down
5 changes: 5 additions & 0 deletions webapp/assets/dependencies/metricsgraphics.min.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions webapp/assets/dependencies/moment.min.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions webapp/assets/dependencies/socket.io.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions webapp/assets/index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<!--
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: MPL-2.0
-->

<html>
<head>
<meta charset="UTF-8">
Expand Down
5 changes: 5 additions & 0 deletions webapp/assets/styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/

body {
background-color: #eee;
}
Expand Down
3 changes: 3 additions & 0 deletions webapp/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package main

import (
Expand Down