Skip to content

Commit

Permalink
Merge pull request #3 from hashicorp/compliance/add-headers
Browse files Browse the repository at this point in the history
[COMPLIANCE] Add Copyright and License Headers
  • Loading branch information
robin-norwood authored Mar 9, 2023
2 parents 1af477e + 14d8011 commit 1618817
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/index.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
*/

const express = require('express');
const pgp = require('pg-promise')();
// Set SSL to false
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 "heroku" {}

resource "heroku_app" "example" {
Expand Down
3 changes: 3 additions & 0 deletions output.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

output "app_url" {
value = heroku_app.example.web_url
description = "Application URL"
Expand Down
3 changes: 3 additions & 0 deletions 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_providers {
heroku = {
Expand Down

0 comments on commit 1618817

Please sign in to comment.