Skip to content
Snippets Groups Projects

Gonrg 7780 datastore fix

Merged Aliaksandr Ramanovich (EPAM) requested to merge GONRG-7780-datastor-fix into master
3 files
+ 23
2
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -182,6 +182,20 @@ elastic_port = "<REPLACE_ME>"
| **services_deployment_enabled** | Flag that defines whether to deploy only infrastructure (false) or infrastructure with services (true) | bool | `true` | `true` | yes |
| **data_bootstrap_enabled** | Flag that defines whether to download reference and workproduct data (true) or not (false) | bool | `false` | `false` | yes |
<details><summary><b>Notes</b></summary>
If your Google Cloud project already has an initialized datastore database **(default)**, for successful installation you need to add the **imports.tf** file with the following contents:
```hcl
import {
id = "projects/<project_id>/databases/(default)"
to = module.osdu.google_firestore_database.default_database
}
```
Don't use variables in import block, since they are not supported here. All parameters in id should it be indicated explicitly.
</details>
## Outputs
| Name | Description | Example |
Loading