Skip to content

Commit 8ae1bde

Browse files
authored
Merge pull request ovh#401 from ovh/hcl-format
Add hcl format when missing
2 parents 83fd4fb + 45216e8 commit 8ae1bde

17 files changed

+19
-7
lines changed

website/docs/d/cloud_project_database.html.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Use this data source to get the managed database of a public cloud project.
99
## Example Usage
1010

1111
To get information of a database cluster service:
12+
1213
```hcl
1314
data "ovh_cloud_project_database" "db" {
1415
service_name = "XXXXXX"

website/docs/d/cloud_project_database_ip_restrictions.html.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Use the list of IP restrictions associated with a public cloud project.
99
## Example Usage
1010

1111
To get the list of IP restriction on a database cluster service:
12+
1213
```hcl
1314
data "ovh_cloud_project_database_ip_restrictions" "iprestrictions" {
1415
service_name = "XXXXXX"

website/docs/d/cloud_project_databases.html.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Use this data source to get the list of managed databases of a public cloud proj
99
## Example Usage
1010

1111
To get the list of database clusters service for a given engine:
12+
1213
```hcl
1314
data "ovh_cloud_project_databases" "dbs" {
1415
service_name = "XXXXXX"

website/docs/d/cloud_project_failover_ip_attach.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ subcategory : "Additional IP"
44

55
# ovh_cloud_project_failover_ip_attach (Data Source)
66

7-
Use this data source to get the details of a failover ip address of a service in a public cloud project.
7+
Use this data source to get the details of a failover IP address of a service in a public cloud project.
88

99
## Example Usage
1010

website/docs/r/cloud_project_database.html.markdown

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ interact directly with the team that builds our databases services and terraform
1818
## Example Usage
1919

2020
Minimum settings for each engine (region choice is up to the user):
21+
2122
```hcl
2223
resource "ovh_cloud_project_database" "cassandradb" {
2324
service_name = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
@@ -135,6 +136,7 @@ resource "ovh_cloud_project_database" "redisdb" {
135136
```
136137

137138
To deploy a business PostgreSQL service with two nodes on public network:
139+
138140
```hcl
139141
resource "ovh_cloud_project_database" "postgresql" {
140142
service_name = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
@@ -154,6 +156,7 @@ resource "ovh_cloud_project_database" "postgresql" {
154156

155157

156158
To deploy an enterprise MongoDB service with three nodes on private network:
159+
157160
```hcl
158161
resource "ovh_cloud_project_database" "mongodb" {
159162
service_name = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

website/docs/r/cloud_project_database_integration.html.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Please take a look at the list of available `types` in the `Argument references`
1313
## Example Usage
1414

1515
Push PostgreSQL logs in an OpenSearch DB:
16+
1617
```hcl
1718
data "ovh_cloud_project_database" "dbpostgresql" {
1819
service_name = "XXXX"

website/docs/r/cloud_project_database_m3db_user.html.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Creates an user for a M3DB cluster associated with a public cloud project.
1010

1111
Create a user johndoe in a M3DB database.
1212
Output the user generated password with command `terraform output user_password`.
13+
1314
```hcl
1415
data "ovh_cloud_project_database" "m3db" {
1516
service_name = "XXX"

website/docs/r/cloud_project_database_mongodb_user.html.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Creates an user for a MongoDB cluster associated with a public cloud project.
1010

1111
Create a user johndoe in a MongoDB database.
1212
Output the user generated password with command `terraform output user_password`.
13+
1314
```hcl
1415
data "ovh_cloud_project_database" "mongodb" {
1516
service_name = "XXX"

website/docs/r/cloud_project_database_opensearch_user.html.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Creates an user for a OpenSearch cluster associated with a public cloud project.
1010

1111
Create a user johndoe in a OpenSearch database.
1212
Output the user generated password with command `terraform output user_password`.
13+
1314
```hcl
1415
data "ovh_cloud_project_database" "opensearch" {
1516
service_name = "XXX"

website/docs/r/cloud_project_database_postgresql_user.html.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Creates an user for a PostgreSQL cluster associated with a public cloud project.
1010

1111
Create a user johndoe in a PostgreSQL database.
1212
Output the user generated password with command `terraform output user_password`.
13+
1314
```hcl
1415
data "ovh_cloud_project_database" "postgresql" {
1516
service_name = "XXXX"

0 commit comments

Comments
 (0)