16 lines
431 B
HCL
16 lines
431 B
HCL
// Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
|
|
// 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/management/access/terraform.tfstate"
|
|
}
|
|
}
|
|
|
|
locals {
|
|
availability_domain = lookup(data.oci_identity_availability_domains.ADs.availability_domains[0], "name")
|
|
}
|
|
|