diff --git a/examples/java/documentation-gradle/lambda/README.md b/examples/java/documentation-gradle/lambda/README.md new file mode 100644 index 0000000000..a09dc34ce3 --- /dev/null +++ b/examples/java/documentation-gradle/lambda/README.md @@ -0,0 +1,3 @@ +# Lambda + +You could place your lambda function here. diff --git a/examples/java/documentation-gradle/local_module/outputs.tf b/examples/java/documentation-gradle/local_module/outputs.tf new file mode 100644 index 0000000000..078d1948eb --- /dev/null +++ b/examples/java/documentation-gradle/local_module/outputs.tf @@ -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 +} diff --git a/examples/java/documentation-gradle/local_module/variables.tf b/examples/java/documentation-gradle/local_module/variables.tf new file mode 100644 index 0000000000..dbeeef4e15 --- /dev/null +++ b/examples/java/documentation-gradle/local_module/variables.tf @@ -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" +} \ No newline at end of file