-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.ini.sample
41 lines (32 loc) · 1.48 KB
/
settings.ini.sample
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
#############################################
[DEFAULT]
# Specify your OCICLI config file (No quotation required)
oci_config_file = ~/.oci/config
# Set OCICLI profile name. Note that oci_config_profile can be different to the profile of this script.
oci_config_profile = <yourprofilename>
# Set True if using instance principal signing
use_instance_principal = True # True or False
#############################################
# Use this profile name with --profile parameter
#############################################
[sample-profile-1]
# Set top level compartment OCID. Tenancy OCID will be set if null.
target_compartment_ids = ["ocid1.compartment.oc1..aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"ocid1.compartment.oc1..aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"]
# List compartment names to exclude
excluded_compartment_names = ["compartment1",
"compartment2",
"compartment3"]
# List target regions. All regions will be counted if null.
target_region_names = ["ap-tokyo-1","ap-osaka-1"]
#############################################
# Use this profile name with --profile parameter
#############################################
[sample-profile-2]
# Set top level compartment OCID. Tenancy OCID will be set if null.
target_compartment_ids = []
# List compartment names to exclude
excluded_compartment_names = []
# List target regions. All regions will be counted if null.
target_region_names = []
#############################################