Skip to content
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
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 "lambda_urls" {
type = list(string)
description = "URLs to invoke lambda functions"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

component "s3" {
for_each = var.regions

Expand Down
3 changes: 3 additions & 0 deletions tfconfig/testdata-stack/components/components.tfstack.hcl
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

component "compute" {
source = "hashicorp/vault-starter/aws"
version = "~> 4.0"
Expand Down
3 changes: 3 additions & 0 deletions tfconfig/testdata-stack/empty/empty.tfcomponent.hcl
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 tfconfig/testdata-stack/empty/empty.tfstack.hcl
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 tfconfig/testdata-stack/outputs/outputs.tfcomponent.hcl
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 "unique_name_of_output" {
description = "Description of the purpose of this output"
type = string
Expand Down
3 changes: 3 additions & 0 deletions tfconfig/testdata-stack/outputs/outputs.tfstack.hcl
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 "lambda_urls" {
type = list(string)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

required_providers {
google = {
source = "hashicorp/google"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

required_providers {
random = {
source = "hashicorp/random"
Expand Down
3 changes: 3 additions & 0 deletions tfconfig/testdata-stack/variables/variables.tfcomponent.hcl
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 "primitive" {
}

Expand Down
3 changes: 3 additions & 0 deletions tfconfig/testdata-stack/variables/variables.tfstack.hcl
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 "bool_default_false_tfstack" {
type = bool
default = false
Expand Down
Loading