13 lines
295 B
HCL
13 lines
295 B
HCL
// Copyright (c) 2020, Oracle and/or its affiliates.
|
|
// Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
|
|
|
|
terraform {
|
|
required_version = ">= 0.12.0"
|
|
|
|
backend "local" {
|
|
path = "../state/common/configuration/terraform.tfstate"
|
|
}
|
|
|
|
}
|
|
|