Skip to content

Commit 0ab8f6d

Browse files
fix hcl: replace < and > with " in hcl examples (#728)
* fix: replace < and > with " in hcl examples * fix: replace \_ with _
1 parent a789153 commit 0ab8f6d

File tree

123 files changed

+275
-270
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+275
-270
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 6.6.9
2+
### Docs
3+
- Replace < and > with " in the docs
4+
- Remove { and } from terraform imports
5+
- Replace \_ with _ in resource names
16
## 6.6.8
27
### Features
38
- Add `auto_scaling` attribute to `ionoscloud_dataplatform_node_pool` resource.
@@ -511,7 +516,7 @@ Please contact your sales representative or support for more information.
511516
- Defining a separate firewall rule for server should not set firewall_id inside server resource, as it moves the firewall resource inside the server on re-apply
512517
- Fixes creating share resource edit and share privileges mix up
513518
- `viable_node_pool_versions` in k8s cluster is no longer optional, is only computed
514-
- Allow server import with nic and firewallId : `terraform import ionoscloud_server.myserver {datacenter uuid}/{server uuid}/{primary nic id}/{firewall rule id}`
519+
- Allow server import with nic and firewallId : `terraform import ionoscloud_server.myserver datacenter uuid/server uuid/primary nic id/firewall rule id`
515520
- Mongo tests update mongo version
516521
- Change the way in which we set the NIC data
517522
- Allow server import with nic and firewall ids

docs/data-sources/apigateway.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ When this happens, please refine your search string so that it is specific enoug
2020

2121
```
2222
data "ionoscloud_apigateway" "example" {
23-
id = <your_apigateway_id>
23+
id = "your_apigateway_id"
2424
}
2525
```
2626

docs/data-sources/apigateway_route.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ When this happens, please refine your search string so that it is specific enoug
2020

2121
```hcl
2222
data "ionoscloud_apigateway_route" "example" {
23-
id = <your_apigateway_route_id>
24-
gateway_id = <your_gateway_id>
23+
id = "your_apigateway_route_id"
24+
gateway_id = "your_gateway_id"
2525
}
2626
```
2727

@@ -33,7 +33,7 @@ this data source is called.
3333
```hcl
3434
data "ionoscloud_apigateway_route" "example" {
3535
name = "apigateway-route"
36-
gateway_id = <your_gateway_id>
36+
gateway_id = "your_gateway_id"
3737
}
3838
```
3939

docs/data-sources/application_loadbalancer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ When this happens, please refine your search and make sure that your resources h
2020
```hcl
2121
data "ionoscloud_application_loadbalancer" "example" {
2222
datacenter_id = ionoscloud_datacenter.example.id
23-
id = <alb_id>
23+
id = "alb_id"
2424
}
2525
```
2626

docs/data-sources/application_loadbalancer_forwardingrule.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ When this happens, please refine your search and make sure that your resources h
2121
data "ionoscloud_application_loadbalancer_forwardingrule" "example" {
2222
datacenter_id = ionoscloud_datacenter.example.id
2323
application_loadbalancer_id = ionoscloud_application_loadbalancer.example.id
24-
id = <alb_fwr_id>
24+
id = "alb_fwr_id"
2525
}
2626
```
2727

docs/data-sources/autoscaling_group.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: |-
77
Get information on a IonosCloud Autoscaling Group
88
---
99

10-
# ionoscloud\_autoscaling_group
10+
# ionoscloud_autoscaling_group
1111

1212
The autoscaling group data source can be used to search for and return an existing Autoscaling Group. You can provide a string for the name or id parameters which will be compared with provisioned Autoscaling Groups. If a single match is found, it will be returned.
1313

@@ -16,7 +16,7 @@ The autoscaling group data source can be used to search for and return an existi
1616
### By Id
1717
```hcl
1818
data "ionoscloud_autoscaling_group" "autoscaling_group" {
19-
id = <autoscaling_group_uuid>
19+
id = "autoscaling_group_uuid"
2020
}
2121
```
2222

docs/data-sources/autoscaling_group_servers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ description: |-
77
Get information on servers generated as part of the autoscaling group.
88
---
99

10-
# ionoscloud\_autoscaling_group_servers
10+
# ionoscloud_autoscaling_group_servers
1111

1212
The autoscaling group servers data source can be used to search for and return existing servers that are part of a specific autoscaling group.
1313

1414
## Example Usage
1515

1616
```hcl
1717
data "ionoscloud_autoscaling_group_servers" "autoscaling_group_servers" {
18-
group_id = <autoscaling_group_uuid>
18+
group_id = "autoscaling_group_uuid"
1919
}
2020
```
2121

docs/data-sources/backup_unit.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: |-
77
Get Information on a IonosCloud Backup Unit
88
---
99

10-
# ionoscloud\_backup_unit
10+
# ionoscloud_backup_unit
1111

1212
The **Backup Unit data source** can be used to search for and return an existing Backup Unit.
1313
You can provide a string for either id or name parameters which will be compared with provisioned Backup Units.
@@ -19,7 +19,7 @@ When this happens, please refine your search string so that it is specific enoug
1919
### By ID
2020
```hcl
2121
data "ionoscloud_backup_unit" "example" {
22-
id = <backup_unit_id>
22+
id = "backup_unit_id"
2323
}
2424
```
2525

docs/data-sources/cdn_distribution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ When this happens, please refine your search and make sure that your resources h
1919
### By Id
2020
```hcl
2121
data "ionoscloud_cdn_distribution" "example" {
22-
id = <distr_id>
22+
id = "distr_id"
2323
}
2424
```
2525

docs/data-sources/certificate_manager_auto_certificate.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ When this happens, please refine your search string so that it is specific enoug
1919
### By ID
2020
```hcl
2121
data "ionoscloud_auto_certificate" "example" {
22-
id = <auto_certificate_id>
23-
location = <auto_certificate_location>
22+
id = "auto_certificate_id"
23+
location = "auto_certificate_location"
2424
}
2525
```
2626

2727
### By Name
2828
```hcl
2929
data "ionoscloud_auto_certificate" "example" {
3030
name = "AutoCertificate Name Example"
31-
location = <auto_certificate_location>
31+
location = "auto_certificate_location"
3232
}
3333
```
3434

0 commit comments

Comments
 (0)