Skip to content

Commit

Permalink
fix:[CDS-95142]:Corrected the example for the Service List (#967)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rakshitharness committed Apr 4, 2024
1 parent 6146404 commit 8ae0753
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/data-sources/platform_service_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Data source for retrieving Harness service list.
## Example Usage for project level service list

```terraform
data "harness_platform_service" "example" {
data "harness_platform_service_list" "example" {
org_id = "org_id"
project_id = "project_id"
}
Expand All @@ -22,15 +22,15 @@ data "harness_platform_service" "example" {
## Example Usage for Organisation level service list

```terraform
data "harness_platform_service" "example" {
data "harness_platform_service_list" "example" {
org_id = "org_id"
}
```

## Example Usage for Account level service list

```terraform
data "harness_platform_service" "example" {
data "harness_platform_service_list" "example" {
}
```

Expand Down

0 comments on commit 8ae0753

Please sign in to comment.