Skip to content

Commit

Permalink
chore: add missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielMSchmidt committed Aug 9, 2023
1 parent 26f6739 commit 2e4ebf2
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/java/documentation-gradle/lambda/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Lambda

You could place your lambda function here.
8 changes: 8 additions & 0 deletions examples/java/documentation-gradle/local_module/outputs.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

# Output variable definitions
output "dns_server_output" {
description = "Domain name of the bucket"
value = var.ip_address
}
16 changes: 16 additions & 0 deletions examples/java/documentation-gradle/local_module/variables.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

# Input variable definitions

variable "name" {
description = "Name"
type = string
default = "example-vpc"
}

variable "ip_address" {
description = "IP address"
type = string
default = "127.0.0.1"
}

0 comments on commit 2e4ebf2

Please sign in to comment.