Skip to content

gouravtiwari/akamai-cloudlet-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Akamai cloudlet manager

Akamai API for changes to Property Manager etc via CLI

Build Status Maintainability

Setup

Prerequisites

These steps assume that you have ruby 2.3.1 or 2.4.2 installed

Steps

  1. Get credentials in Akamai control panel (Luna)

https://developer.akamai.com/introduction/Prov_Creds.html

  1. Once you get New Credential Client Secret copy them to local in ~/.edgerc file

It should resemble like this:

[default]
host = akaa-xxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxx.luna.akamaiapis.net
client_token = akab-xxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxx
client_secret = xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
access_token = akab-xxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxx
  1. Ensure you have bundler installed:

    gem install akamai_cloudlet_manager
    

Akamai Cloudlet Manager: Power of CLI

This Gem provides a CLI, which makes akamai-cloudlet api calls very easy.

Get help

$ acm --help
// Lists all available commands

Updating a policy version

To update a policy version with new set of rules, these are series of steps you need to perform in order:

  1. Get policy version
# Get all versions of a policy
acm get_policy_versions --policy-id=POLICY_ID
  1. Clone policy version
# Clones the current policy version
acm clone_policy_version --policy-id=POLICY_ID
  1. Update the cloned policy(draft policy)
acm update_policy_version --draft-version=DRAFT_VERSION --file-path=FILE_PATH --origin-id=ORIGIN_ID --policy-id=POLICY_ID --rule-name=RULE_NAME

Optional parameter to the above command are:

--rule_type, rule type, e.g. "albMatchRule"
--cookie_rules, from which cookie rules can be constructed and updated to policy version, e.g. "abc=xyz"
  1. Activate policy version

Once rules look good in luna panel, you can activate policy to a given network(staging/production)

acm activate_policy_version --network=NETWORK --policy-id=POLICY_ID --version=VERSION

About

A Ruby interface to simplify akamai-cloudlet updates

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages