github.com/IBM-Cloud/bluemix-go@v0.0.0-20240423071914-9e96525baef4/examples/cis/cisv1/glbs/README.md (about) 1 # GLB Create/Get/Delete example 2 3 This example shows how to create, get and delete a GLB for a zone. CIS resource instance must be created first via UI or using the `resource/service-instance` example to create an `internet-svcs` instance. 64 digit CRN should be supplied as cis_id variable for zone create/delete. Environment variable IC_API_KEY must be set with API key. 4 5 The zone_id can be retrived from the id field in the last line of the ZoneCreate command output. 6 {"result": {"id": `"b6e1169a4a9fef8d8ff984fee4a4eb20"`, "name": "example.com" 7 8 The pool_id can be retrived from the id field in the last line of the Poolreate command output. 9 {"result": {"description": "", "created_on": "2018-12-10T09:35:47.269909Z", "modified_on": "2018-12-10T09:35:47.269909Z", "id": `"00f0c9cad99646eed248e1f126a1c1ac"` 10 11 Example: 12 ``` 13 go run main.go -cis_id="crn:v1:bluemix:public:internet-svcs:global:a/4ea1882a2d3401ed1e459979941966ea:d268d835-3ef5-4049-8526-296ff08020a0::" -zone_id="b6e1169a4a9fef8d8ff984fee4a4eb20" -pool_id="abce169a4a9fef8d8ff984fee4a4eb20" -domain_name="www.example.com" 14 ```