The Fastly C@E app performs conversion of JSON for Akamai cloudlets to Fastly VCL snippets and installs them to a destination service .
Fastly CLI is required to test the application locally and install to a Fastly C@E service. To get started, learn about installing and configuring the CLI. To start with a new C@E app using the current repo use the following commands. You might be prompted for your credentials and a target domain for your new Fastly C@E service.
$ fastly compute init --from=https://github.com/vagetman/json2vcl
$ fastly compute publishFor more detailed information please refer to a Fastly article about using JS on C@E
It is also possible to test the application locally with the following command
$ fastly compute serveThe application expects a JSON uploaded with POST method at the following endpoint
/cloudlet/<type>/service/<sid>?format=<json|csv>, where
<type>refers tomatchRulestype, could beerforerMatchRule(for Edge Redirect),asforasMatchRule(for Audience segmentation), orfrforfrMatchRule(for Forward Rewrite). (at the time of writing onlyeris implemented).<sid>is Fastly Service ID.formatis a required query parameter that represents the data format, can be eitherjsonorcsv.
It's required to specify a Fastly-Key header with Fastly API token that has access to the sid
For example, the following curl command could be used:
curl https://example.com/cloudlet/er/service/xRNX3LlEUCVrSqtRtQ6r58?format=json -X POST --data-binary @cloudlet.json -H Fastly-Key:IxWZk_U-HxxuMW8X8v_x8mC5QrnHo4nxexample.com should be the domain that gets provisioned with your compute service. When testing locally -
curl http://localhost:7676/cloudlet/er/service/xRNX3LlEUCVrSqtRtQ6r58?format=json -X POST --data-binary @cloudlet.json -H Fastly-Key:IxWZk_U-HxxuMW8X8v_x8mC5QrnHo4nxCloudlet UI users are working with CSV data format. When the using CSV ?format= query parameter must be set to csv value, eg
curl http://localhost:7676/cloudlet/er/service/xRNX3LlEUCVrSqtRtQ6r58?format=csv -X POST --data-binary @cloudlet.csv -H Fastly-Key:IxWZk_U-HxxuMW8X8v_x8mC5QrnHo4nx(The sid and Fastly-Key are not real and provided only for the usage demonstration only. Please use your own SIDs and keys.)