mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-10 07:06:38 +07:00
11 lines
487 B
HCL
11 lines
487 B
HCL
terraform {
|
|
# This module is now only being tested with Terraform 0.13.x. However, to make upgrading easier, we are setting
|
|
# 0.12.26 as the minimum version, as that version added support for required_providers with source URLs, making it
|
|
# forwards compatible with 0.13.x code.
|
|
required_version = ">= 0.12.26"
|
|
}
|
|
|
|
# website::tag::1:: The simplest possible Terraform module: it just outputs "Hello, World!"
|
|
output "hello_world" {
|
|
value = "Hello, 90DaysOfDevOps from Terraform"
|
|
} |