File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -201,12 +201,20 @@ Dashboards needs to be imported manually. Below is an example for importing Dash
201
201
3. Download the dashboard JSONs from [here](terraform/modules/dashboards/dashboards_json/).
202
202
4. **Replace** all the instances of the keyword - "`${compartment_ocid}`" in the JSONs with the **Compartment OCID** identified in previous step.
203
203
* Following command is for quick reference that can be used in a linux/cloud-shell environment :
204
-
205
204
```
206
205
sed -i "s/\${compartment_ocid}/<Replace-with-Compartment-OCID>/g" *.json
207
206
```
207
+ * **Note:** Do not replace the keyword {compartment_ocid}. Replace only `<Replace-with-Compartment-OCID>` with your actual target compartment OCID.
208
+
209
+ 5. **Replace** all the instances of the keywords - "`${freeform_tags}`" and "`${freeform_tags}`" with `{}`
210
+ * Following command is for quick reference that can be used in a linux/cloud-shell environment :
211
+
212
+ ```
213
+ sed -i "s/\${freeform_tags}/{}/g" *.json
214
+ sed -i "s/\${defined_tags}/{}/g" *.json
215
+ ```
208
216
209
- 5 . Run the following commands to import the dashboards.
217
+ 6 . Run the following commands to import the dashboards.
210
218
211
219
```
212
220
oci management-dashboard dashboard import --from-json file://cluster.json
You can’t perform that action at this time.
0 commit comments