Mark Headd

Results 46 comments of Mark Headd

Add detail, depth Find way to map it visually. Add examples.

Per, @soutenniza - the CF docs on `create-service` have [specific examples for Windows users](https://cli.cloudfoundry.org/en-US/v6/create-service.html#EXAMPLES). We should make sure to include these, or point out the differences, as our docs tend...

That's a good question. You could certainly use the credentials in a different way, without the URL, and [our docs show how to do that](https://github.com/cloud-gov/aws-redis-example/tree/main/python#differences-in-configuration). I think the issue arises...

Lots of references to repos in the 18F org [on this page](https://cloud.gov/docs/ops/repos/). Should be updated ASAP.

All of the apps in the [hello worlds repo](https://github.com/cloud-gov/cf-hello-worlds) should be checked to ensure they are working correctly with current buildpack version, and updated accordingly if not.

And a PowerShell version of @pburkholder's script: ```pwsh $query = "type+IN+audit.service_instance.create,audit.service_instance.delete" $total_pages = $(cf curl "/v2/events?results-per-page=100&q=${query}" | jq -c -r '.total_pages') $page = 1 while($page -le $total_pages) { cf curl...