forked from oci-landing-zones/oci-cis-landingzone-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmoved.tf
40 lines (33 loc) · 962 Bytes
/
moved.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Copyright (c) 2022 Oracle and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
#------------------------------------------------------------------------------------------------------
#-- Modules that moved as they became optional. Release 2.4.0. Requires Terraform 1.1
#------------------------------------------------------------------------------------------------------
moved {
from = module.lz_buckets
to = module.lz_buckets[0]
}
moved {
from = module.lz_vault
to = module.lz_vault[0]
}
moved {
from = module.lz_keys
to = module.lz_keys[0]
}
moved {
from = module.lz_service_connector
to = module.lz_service_connector[0]
}
moved {
from = module.lz_scanning
to = module.lz_scanning[0]
}
moved {
from = module.lz_arch_center_tag
to = module.lz_arch_center_tag[0]
}
moved {
from = module.lz_cloud_guard
to = module.lz_cloud_guard[0]
}