Skip to content

Commit

Permalink
Merge pull request #8 from rootsami/fix-readme
Browse files Browse the repository at this point in the history
docs: fix a miscalculated results
  • Loading branch information
rootsami authored Jan 19, 2023
2 parents 9318d3d + f1b3635 commit dd36605
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ $ curl http://localhost:8080/api/plan?stack=api-staging
{"drift":true,"add":1,"change":0,"destroy":0}

$ curl http://localhost:8080/api/plan?stack=core-production
{"drift":false,"add":0,"change":0,"destroy":1}
{"drift":true,"add":0,"change":0,"destroy":1}
```

Retrieving the drifts as prometheus metrics
Expand Down
2 changes: 1 addition & 1 deletion terradrift-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ $ curl http://localhost:8080/api/plan?stack=api-staging
{"drift":true,"add":1,"change":0,"destroy":0}

$ curl http://localhost:8080/api/plan?stack=core-production
{"drift":false,"add":0,"change":0,"destroy":1}
{"drift":true,"add":0,"change":0,"destroy":1}
```

Retrieving the drifts as prometheus metrics
Expand Down

0 comments on commit dd36605

Please sign in to comment.