-
Notifications
You must be signed in to change notification settings - Fork 48
/
datasources.tf
51 lines (39 loc) · 1.22 KB
/
datasources.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
41
42
43
44
45
46
47
48
49
50
## Copyright (c) 2020, Oracle and/or its affiliates.
## All rights reserved. The Universal Permissive License (UPL), Version 1.0 as shown at http://oss.oracle.com/licenses/upl
data "oci_identity_regions" "oci_regions" {
filter {
name = "name"
values = [var.region]
}
}
data "oci_core_services" "oci_services" {
filter {
name = "name"
values = ["All .* Services In Oracle Services Network"]
regex = true
}
}
data "oci_identity_region_subscriptions" "home_region_subscriptions" {
tenancy_id = var.tenancy_ocid
filter {
name = "is_home_region"
values = [true]
}
}
data "oci_identity_tenancy" "oci_tenancy" {
tenancy_id = var.tenancy_ocid
}
data "oci_objectstorage_namespace" "test_namespace" {
compartment_id = var.tenancy_ocid
}
data "oci_apigateway_deployment" "export_BaggageDemo" {
deployment_id = oci_apigateway_deployment.export_BaggageDemo.id
}
data "oci_nosql_table" "nosql_demo" {
table_name_or_id = oci_nosql_table.nosql_demo.id
compartment_id = oci_nosql_table.nosql_demo.compartment_id
}
data "oci_nosql_table" "nosql_demoKeyVal" {
table_name_or_id = oci_nosql_table.nosql_demoKeyVal.id
compartment_id = oci_nosql_table.nosql_demoKeyVal.compartment_id
}