Skip to content

Commit

Permalink
[COMPLIANCE] Add required copyright headers
Browse files Browse the repository at this point in the history
Signed-off-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
  • Loading branch information
hashicorp-copywrite[bot] committed Mar 21, 2024
1 parent 9e79db6 commit cedcab4
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/fixtures/ai/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

3 changes: 3 additions & 0 deletions test/fixtures/ai/variables.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

variable "agi" {
default = false
}
3 changes: 3 additions & 0 deletions test/fixtures/compute/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


resource "google_compute_network" "vpc_network" {
name = "terraform-network"
Expand Down
3 changes: 3 additions & 0 deletions test/fixtures/compute/outputs.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 "ip" {
value = google_compute_instance.vm_instance.network_interface[0].network_ip
}
3 changes: 3 additions & 0 deletions test/fixtures/compute/variables.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

variable "instance_name" {
type = string
description = "Name of the compute instance"
Expand Down
3 changes: 3 additions & 0 deletions test/fixtures/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 {
required_providers {
google = {
Expand Down
3 changes: 3 additions & 0 deletions test/fixtures/terraform.tfvars
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

zone = "us-central1-c"
3 changes: 3 additions & 0 deletions test/fixtures/variables.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

variable "project" {
type = string
}
Expand Down

0 comments on commit cedcab4

Please sign in to comment.