#!/bin/bash | |||||
echo $PWD && | |||||
cd terraform && | |||||
terraform init && | |||||
terraform plan -out=.plan && | |||||
terraform apply .plan && | |||||
cd $OLDPWD |
terraform { | |||||
required_providers { | |||||
akamai = { | |||||
source = "akamai/akamai" | |||||
version = "5.2.0" | |||||
} | |||||
} | |||||
} | |||||
provider "akamai" { | |||||
edgerc = var.edgerc | |||||
config_section = var.section | |||||
} |
data "akamai_property_rules_template" "template-update" { | |||||
template_file = abspath("${path.root}/property-snippets/main.json") | |||||
variables { | |||||
name = "secure" | |||||
value = "${var.secure}" | |||||
type = "bool" | |||||
} | |||||
variables { | |||||
name = "origin" | |||||
value = "${var.origin}" | |||||
type = "string" | |||||
} | |||||
variables { | |||||
name = "cpcodeId" | |||||
value = "${var.cpcodeId}" | |||||
type = "number" | |||||
} | |||||
variables { | |||||
name = "cpcodeName" | |||||
value = "${var.cpcodeName}" | |||||
type = "string" | |||||
} | |||||
} | |||||
resource "akamai_property" "ion_premier" { | |||||
name = "${var.prefix}-${var.program}" | |||||
product_id = "prd_SPM" | |||||
contract_id = "ctr_${var.contract_id}" | |||||
group_id = "grp_${var.group_id}" | |||||
hostnames { | |||||
cname_from = "${var.prefix}${var.program}.${var.hostname}" | |||||
cname_to = var.edge_hostname | |||||
cert_provisioning_type = "CPS_MANAGED" | |||||
} | |||||
rule_format = "latest" | |||||
rules = data.akamai_property_rules_template.template-update.json | |||||
} | |||||
output "property_id" { | |||||
value = "${akamai_property.ion_premier.id}" | |||||
} | |||||
output "property_version" { | |||||
value = "${akamai_property.ion_premier.latest_version}" | |||||
} | |||||
resource "akamai_property_activation" "activation_staging" { | |||||
property_id = "${akamai_property.ion_premier.id}" | |||||
version = "${akamai_property.ion_premier.latest_version}" | |||||
network = "${var.network}" | |||||
contact = ["${var.email}"] | |||||
note = "Automatic deployment for ${var.program} Lab" | |||||
auto_acknowledge_rule_warnings = true | |||||
} |
{ | |||||
"name": "Accelerate delivery", | |||||
"children": [ | |||||
{ | |||||
"name": "Origin connectivity", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "dnsAsyncRefresh", | |||||
"options": { | |||||
"enabled": true, | |||||
"timeout": "1h" | |||||
} | |||||
}, | |||||
{ | |||||
"name": "timeout", | |||||
"options": { | |||||
"value": "5s" | |||||
} | |||||
}, | |||||
{ | |||||
"name": "readTimeout", | |||||
"options": { | |||||
"value": "120s" | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Optimize the connection between edge and origin." | |||||
}, | |||||
{ | |||||
"name": "Protocol optimizations", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "enhancedAkamaiProtocol", | |||||
"options": { | |||||
"display": "" | |||||
} | |||||
}, | |||||
{ | |||||
"name": "http2", | |||||
"options": { | |||||
"enabled": "" | |||||
} | |||||
}, | |||||
{ | |||||
"name": "allowTransferEncoding", | |||||
"options": { | |||||
"enabled": true | |||||
} | |||||
}, | |||||
{ | |||||
"name": "sureRoute", | |||||
"options": { | |||||
"enableCustomKey": false, | |||||
"enabled": true, | |||||
"forceSslForward": false, | |||||
"raceStatTtl": "30m", | |||||
"srDownloadLinkTitle": "", | |||||
"testObjectUrl": "/akamai/sure-route-test-object.html", | |||||
"toHostStatus": "INCOMING_HH", | |||||
"type": "PERFORMANCE" | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Serve your website using modern and fast protocols." | |||||
}, | |||||
{ | |||||
"name": "Prefetching", | |||||
"children": [ | |||||
{ | |||||
"name": "Prefetching objects", | |||||
"children": [ | |||||
{ | |||||
"name": "Bots", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "prefetch", | |||||
"options": { | |||||
"enabled": false | |||||
} | |||||
} | |||||
], | |||||
"criteria": [ | |||||
{ | |||||
"name": "userAgent", | |||||
"options": { | |||||
"matchCaseSensitive": false, | |||||
"matchOperator": "IS_ONE_OF", | |||||
"matchWildcard": true, | |||||
"values": [ | |||||
"*bot*", | |||||
"*crawl*", | |||||
"*spider*" | |||||
] | |||||
} | |||||
} | |||||
], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Disable prefetching for specific clients identifying themselves as bots and crawlers. This avoids requesting unnecessary resources from the origin." | |||||
} | |||||
], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "prefetch", | |||||
"options": { | |||||
"enabled": true | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Define for which HTML pages prefetching should be enabled." | |||||
}, | |||||
{ | |||||
"name": "Prefetchable objects", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "prefetchable", | |||||
"options": { | |||||
"enabled": true | |||||
} | |||||
} | |||||
], | |||||
"criteria": [ | |||||
{ | |||||
"name": "fileExtension", | |||||
"options": { | |||||
"matchCaseSensitive": false, | |||||
"matchOperator": "IS_ONE_OF", | |||||
"values": [ | |||||
"css", | |||||
"js", | |||||
"jpg", | |||||
"jpeg", | |||||
"jp2", | |||||
"png", | |||||
"gif", | |||||
"svg", | |||||
"svgz", | |||||
"webp", | |||||
"eot", | |||||
"woff", | |||||
"woff2", | |||||
"otf", | |||||
"ttf" | |||||
] | |||||
} | |||||
} | |||||
], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Define which resources should be prefetched." | |||||
} | |||||
], | |||||
"behaviors": [], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Instruct edge servers to retrieve embedded resources before the browser requests them." | |||||
}, | |||||
{ | |||||
"name": "Adaptive acceleration", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "adaptiveAcceleration", | |||||
"options": { | |||||
"abLogic": "DISABLED", | |||||
"enableBrotliCompression": false, | |||||
"enablePreconnect": true, | |||||
"enablePush": true, | |||||
"enableRo": false, | |||||
"preloadEnable": true, | |||||
"source": "mPulse", | |||||
"titleHttp2ServerPush": "", | |||||
"titlePreconnect": "", | |||||
"titlePreload": "", | |||||
"titleRo": "" | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Automatically and continuously apply performance optimizations to your website using machine learning." | |||||
} | |||||
], | |||||
"behaviors": [], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Control the settings related to improving the performance of delivering objects to your users." | |||||
} |
{ | |||||
"name": "Augment insights", | |||||
"children": [ | |||||
{ | |||||
"name": "Traffic reporting", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "cpCode", | |||||
"options": { | |||||
"value": { | |||||
"id": "${env.cpcodeId}", | |||||
"name": "${env.cpcodeName}" | |||||
} | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Identify your main traffic segments so you can granularly zoom in your traffic statistics like hits, bandwidth, offload, response codes, and errors." | |||||
}, | |||||
{ | |||||
"name": "mPulse RUM", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "mPulse", | |||||
"options": { | |||||
"apiKey": "", | |||||
"bufferSize": "", | |||||
"configOverride": "", | |||||
"enabled": true, | |||||
"loaderVersion": "V12", | |||||
"requirePci": false, | |||||
"titleOptional": "" | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Collect and analyze real-user data to monitor the performance of your website." | |||||
}, | |||||
{ | |||||
"name": "Geolocation", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "edgeScape", | |||||
"options": { | |||||
"enabled": false | |||||
} | |||||
} | |||||
], | |||||
"criteria": [ | |||||
{ | |||||
"name": "requestType", | |||||
"options": { | |||||
"matchOperator": "IS", | |||||
"value": "CLIENT_REQ" | |||||
} | |||||
} | |||||
], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Receive data about a user's geolocation and connection speed in a request header. If you change cached content based on the values of the X-Akamai-Edgescape request header, contact your account representative." | |||||
}, | |||||
{ | |||||
"name": "Log delivery", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "report", | |||||
"options": { | |||||
"logAcceptLanguage": false, | |||||
"logCookies": "OFF", | |||||
"logCustomLogField": false, | |||||
"logEdgeIP": false, | |||||
"logHost": false, | |||||
"logReferer": false, | |||||
"logUserAgent": false, | |||||
"logXForwardedFor": false | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Specify the level of detail you want to be logged in your Log Delivery Service reports. Log User-Agent Header to obtain detailed information in the Traffic by Browser and OS report." | |||||
} | |||||
], | |||||
"behaviors": [], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Control the settings related to monitoring and reporting. This gives you additional visibility into your traffic and audiences." | |||||
} |
{ | |||||
"name": "Increase availability", | |||||
"children": [ | |||||
{ | |||||
"name": "Simulate failover", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "breakConnection", | |||||
"options": { | |||||
"enabled": true | |||||
} | |||||
} | |||||
], | |||||
"criteria": [ | |||||
{ | |||||
"name": "contentDeliveryNetwork", | |||||
"options": { | |||||
"matchOperator": "IS", | |||||
"network": "STAGING" | |||||
} | |||||
}, | |||||
{ | |||||
"name": "requestHeader", | |||||
"options": { | |||||
"headerName": "breakconnection", | |||||
"matchCaseSensitiveValue": true, | |||||
"matchOperator": "IS_ONE_OF", | |||||
"matchWildcardName": false, | |||||
"matchWildcardValue": false, | |||||
"values": [ | |||||
"Your-Secret-Here" | |||||
] | |||||
} | |||||
} | |||||
], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Simulate an origin connection problem and test the site failover configuration on the CDN staging network." | |||||
}, | |||||
{ | |||||
"name": "Site failover", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "failAction", | |||||
"options": { | |||||
"enabled": false | |||||
} | |||||
} | |||||
], | |||||
"criteria": [ | |||||
{ | |||||
"name": "originTimeout", | |||||
"options": { | |||||
"matchOperator": "ORIGIN_TIMED_OUT" | |||||
} | |||||
} | |||||
], | |||||
"criteriaMustSatisfy": "any", | |||||
"comments": "Specify how edge servers respond when the origin is not available." | |||||
}, | |||||
{ | |||||
"name": "Origin health", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "healthDetection", | |||||
"options": { | |||||
"maximumReconnects": 3, | |||||
"retryCount": 3, | |||||
"retryInterval": "10s" | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Monitor the health of your origin by tracking unsuccessful IP connection attempts." | |||||
}, | |||||
{ | |||||
"name": "Script management", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "scriptManagement", | |||||
"options": { | |||||
"enabled": false | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Enable Script Management to minimize performance and availability impacts from third-party JavaScripts." | |||||
} | |||||
], | |||||
"behaviors": [], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Control how to respond when your origin or third parties are slow or even down to minimize the negative impact on user experience." | |||||
} |
{ | |||||
"rules": { | |||||
"name": "default", | |||||
"children": [ | |||||
"#include:accelerate_delivery.json", | |||||
"#include:augment_insights.json", | |||||
"#include:increase_availability.json", | |||||
"#include:minimize_payload.json", | |||||
"#include:offload_origin.json", | |||||
"#include:strengthen_security.json" | |||||
], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "origin", | |||||
"options": { | |||||
"cacheKeyHostname": "REQUEST_HOST_HEADER", | |||||
"compress": true, | |||||
"enableTrueClientIp": true, | |||||
"forwardHostHeader": "REQUEST_HOST_HEADER", | |||||
"httpPort": 80, | |||||
"httpsPort": 443, | |||||
"originCertificate": "", | |||||
"originSni": true, | |||||
"originType": "CUSTOMER", | |||||
"ports": "", | |||||
"trueClientIpClientSetting": false, | |||||
"trueClientIpHeader": "True-Client-IP", | |||||
"verificationMode": "PLATFORM_SETTINGS", | |||||
"hostname": "${env.origin}" | |||||
} | |||||
} | |||||
], | |||||
"options": { | |||||
"is_secure": "${env.secure}" | |||||
}, | |||||
"comments": "The behaviors in the Default Rule apply to all requests for the property hostnames unless another rule overrides the Default Rule settings." | |||||
} | |||||
} |
{ | |||||
"name": "Minimize payload", | |||||
"children": [ | |||||
{ | |||||
"name": "Compressible objects", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "gzipResponse", | |||||
"options": { | |||||
"behavior": "ALWAYS" | |||||
} | |||||
} | |||||
], | |||||
"criteria": [ | |||||
{ | |||||
"name": "contentType", | |||||
"options": { | |||||
"matchCaseSensitive": false, | |||||
"matchOperator": "IS_ONE_OF", | |||||
"matchWildcard": true, | |||||
"values": [ | |||||
"application/*javascript*", | |||||
"application/*json*", | |||||
"application/*xml*", | |||||
"application/text*", | |||||
"application/vnd-ms-fontobject", | |||||
"application/vnd.microsoft.icon", | |||||
"application/x-font-opentype", | |||||
"application/x-font-truetype", | |||||
"application/x-font-ttf", | |||||
"application/xmlfont/eot", | |||||
"font/eot", | |||||
"font/opentype", | |||||
"font/otf", | |||||
"image/svg+xml", | |||||
"image/vnd.microsoft.icon", | |||||
"image/x-icon", | |||||
"text/*", | |||||
"application/octet-stream*", | |||||
"application/x-font-eot*", | |||||
"font/ttf", | |||||
"application/font-ttf", | |||||
"application/font-sfnt", | |||||
"application/x-tgif" | |||||
] | |||||
} | |||||
} | |||||
], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Serve gzip compressed content for text-based formats." | |||||
} | |||||
], | |||||
"behaviors": [], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Control the settings that reduce the size of the delivered content and decrease the number of bytes sent by your properties. This allows you to cut down the network overhead of your website or API." | |||||
} |
{ | |||||
"name": "Offload origin", | |||||
"children": [ | |||||
{ | |||||
"name": "CSS and JavaScript", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "caching", | |||||
"options": { | |||||
"behavior": "MAX_AGE", | |||||
"mustRevalidate": false, | |||||
"ttl": "7d" | |||||
} | |||||
} | |||||
], | |||||
"criteria": [ | |||||
{ | |||||
"name": "fileExtension", | |||||
"options": { | |||||
"matchCaseSensitive": false, | |||||
"matchOperator": "IS_ONE_OF", | |||||
"values": [ | |||||
"css", | |||||
"js" | |||||
] | |||||
} | |||||
} | |||||
], | |||||
"criteriaMustSatisfy": "any", | |||||
"comments": "Override the default caching behavior for CSS and JavaScript" | |||||
}, | |||||
{ | |||||
"name": "Fonts", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "caching", | |||||
"options": { | |||||
"behavior": "MAX_AGE", | |||||
"mustRevalidate": false, | |||||
"ttl": "30d" | |||||
} | |||||
} | |||||
], | |||||
"criteria": [ | |||||
{ | |||||
"name": "fileExtension", | |||||
"options": { | |||||
"matchCaseSensitive": false, | |||||
"matchOperator": "IS_ONE_OF", | |||||
"values": [ | |||||
"eot", | |||||
"woff", | |||||
"woff2", | |||||
"otf", | |||||
"ttf" | |||||
] | |||||
} | |||||
} | |||||
], | |||||
"criteriaMustSatisfy": "any", | |||||
"comments": "Override the default caching behavior for fonts." | |||||
}, | |||||
{ | |||||
"name": "Images", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "caching", | |||||
"options": { | |||||
"behavior": "MAX_AGE", | |||||
"mustRevalidate": false, | |||||
"ttl": "30d" | |||||
} | |||||
} | |||||
], | |||||
"criteria": [ | |||||
{ | |||||
"name": "fileExtension", | |||||
"options": { | |||||
"matchCaseSensitive": false, | |||||
"matchOperator": "IS_ONE_OF", | |||||
"values": [ | |||||
"jpg", | |||||
"jpeg", | |||||
"png", | |||||
"gif", | |||||
"webp", | |||||
"jp2", | |||||
"ico", | |||||
"svg", | |||||
"svgz" | |||||
] | |||||
} | |||||
} | |||||
], | |||||
"criteriaMustSatisfy": "any", | |||||
"comments": "Override the default caching behavior for images." | |||||
}, | |||||
{ | |||||
"name": "Files", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "caching", | |||||
"options": { | |||||
"behavior": "MAX_AGE", | |||||
"mustRevalidate": false, | |||||
"ttl": "7d" | |||||
} | |||||
} | |||||
], | |||||
"criteria": [ | |||||
{ | |||||
"name": "fileExtension", | |||||
"options": { | |||||
"matchCaseSensitive": false, | |||||
"matchOperator": "IS_ONE_OF", | |||||
"values": [ | |||||
"pdf", | |||||
"doc", | |||||
"docx", | |||||
"odt" | |||||
] | |||||
} | |||||
} | |||||
], | |||||
"criteriaMustSatisfy": "any", | |||||
"comments": "Override the default caching behavior for files. Files containing Personal Identified Information (PII) should require Edge authentication or not be cached at all." | |||||
}, | |||||
{ | |||||
"name": "Other static objects", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "caching", | |||||
"options": { | |||||
"behavior": "MAX_AGE", | |||||
"mustRevalidate": false, | |||||
"ttl": "7d" | |||||
} | |||||
} | |||||
], | |||||
"criteria": [ | |||||
{ | |||||
"name": "fileExtension", | |||||
"options": { | |||||
"matchCaseSensitive": false, | |||||
"matchOperator": "IS_ONE_OF", | |||||
"values": [ | |||||
"aif", | |||||
"aiff", | |||||
"au", | |||||
"avi", | |||||
"bin", | |||||
"bmp", | |||||
"cab", | |||||
"carb", | |||||
"cct", | |||||
"cdf", | |||||
"class", | |||||
"dcr", | |||||
"dtd", | |||||
"exe", | |||||
"flv", | |||||
"gcf", | |||||
"gff", | |||||
"grv", | |||||
"hdml", | |||||
"hqx", | |||||
"ini", | |||||
"mov", | |||||
"mp3", | |||||
"nc", | |||||
"pct", | |||||
"ppc", | |||||
"pws", | |||||
"swa", | |||||
"swf", | |||||
"txt", | |||||
"vbs", | |||||
"w32", | |||||
"wav", | |||||
"midi", | |||||
"wbmp", | |||||
"wml", | |||||
"wmlc", | |||||
"wmls", | |||||
"wmlsc", | |||||
"xsd", | |||||
"zip", | |||||
"pict", | |||||
"tif", | |||||
"tiff", | |||||
"mid", | |||||
"jxr", | |||||
"jar" | |||||
] | |||||
} | |||||
} | |||||
], | |||||
"criteriaMustSatisfy": "any", | |||||
"comments": "Override the default caching behavior for other static objects." | |||||
}, | |||||
{ | |||||
"name": "HTML pages", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "caching", | |||||
"options": { | |||||
"behavior": "NO_STORE" | |||||
} | |||||
}, | |||||
{ | |||||
"name": "cacheKeyQueryParams", | |||||
"options": { | |||||
"behavior": "IGNORE", | |||||
"exactMatch": true, | |||||
"parameters": [ | |||||
"gclid", | |||||
"fbclid", | |||||
"utm_source", | |||||
"utm_campaign", | |||||
"utm_medium", | |||||
"utm_content" | |||||
] | |||||
} | |||||
} | |||||
], | |||||
"criteria": [ | |||||
{ | |||||
"name": "fileExtension", | |||||
"options": { | |||||
"matchCaseSensitive": false, | |||||
"matchOperator": "IS_ONE_OF", | |||||
"values": [ | |||||
"html", | |||||
"htm", | |||||
"php", | |||||
"jsp", | |||||
"aspx", | |||||
"EMPTY_STRING" | |||||
] | |||||
} | |||||
} | |||||
], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Override the default caching behavior for HTML pages cached on edge servers." | |||||
}, | |||||
{ | |||||
"name": "Redirects", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "cacheRedirect", | |||||
"options": { | |||||
"enabled": "false" | |||||
} | |||||
}, | |||||
{ | |||||
"name": "chaseRedirects", | |||||
"options": { | |||||
"enabled": false | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Configure caching for HTTP redirects. The redirect is cached for the same TTL as a 200 HTTP response when this feature is enabled." | |||||
}, | |||||
{ | |||||
"name": "POST responses", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "cachePost", | |||||
"options": { | |||||
"enabled": false | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Define when HTTP POST requests should be cached. You should enable it under a criteria match." | |||||
}, | |||||
{ | |||||
"name": "GraphQL", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "graphqlCaching", | |||||
"options": { | |||||
"enabled": false | |||||
} | |||||
} | |||||
], | |||||
"criteria": [ | |||||
{ | |||||
"name": "path", | |||||
"options": { | |||||
"matchCaseSensitive": false, | |||||
"matchOperator": "MATCHES_ONE_OF", | |||||
"normalize": false, | |||||
"values": [ | |||||
"/graphql" | |||||
] | |||||
} | |||||
} | |||||
], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Define when your GraphQL queries should be cached." | |||||
}, | |||||
{ | |||||
"name": "Uncacheable objects", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "downstreamCache", | |||||
"options": { | |||||
"behavior": "BUST" | |||||
} | |||||
} | |||||
], | |||||
"criteria": [ | |||||
{ | |||||
"name": "cacheability", | |||||
"options": { | |||||
"matchOperator": "IS_NOT", | |||||
"value": "CACHEABLE" | |||||
} | |||||
} | |||||
], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Configure the default client caching behavior for uncacheable content at the edge." | |||||
} | |||||
], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "caching", | |||||
"options": { | |||||
"behavior": "NO_STORE" | |||||
} | |||||
}, | |||||
{ | |||||
"name": "tieredDistribution", | |||||
"options": { | |||||
"enabled": true | |||||
} | |||||
}, | |||||
{ | |||||
"name": "validateEntityTag", | |||||
"options": { | |||||
"enabled": false | |||||
} | |||||
}, | |||||
{ | |||||
"name": "removeVary", | |||||
"options": { | |||||
"enabled": false | |||||
} | |||||
}, | |||||
{ | |||||
"name": "cacheError", | |||||
"options": { | |||||
"enabled": true, | |||||
"preserveStale": true, | |||||
"ttl": "10s" | |||||
} | |||||
}, | |||||
{ | |||||
"name": "cacheKeyQueryParams", | |||||
"options": { | |||||
"behavior": "INCLUDE_ALL_ALPHABETIZE_ORDER" | |||||
} | |||||
}, | |||||
{ | |||||
"name": "prefreshCache", | |||||
"options": { | |||||
"enabled": true, | |||||
"prefreshval": 90 | |||||
} | |||||
}, | |||||
{ | |||||
"name": "downstreamCache", | |||||
"options": { | |||||
"allowBehavior": "LESSER", | |||||
"behavior": "ALLOW", | |||||
"sendHeaders": "CACHE_CONTROL", | |||||
"sendPrivate": false | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Control the settings related to caching content at the edge and in the browser. As a result, fewer requests go to your origin, fewer bytes leave your data centers, and your assets are closer to your users." | |||||
} |
{ | |||||
"name": "Strengthen security", | |||||
"children": [ | |||||
{ | |||||
"name": "Allowed methods", | |||||
"children": [ | |||||
{ | |||||
"name": "POST", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "allowPost", | |||||
"options": { | |||||
"allowWithoutContentLength": false, | |||||
"enabled": true | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Allow use of the POST HTTP request method." | |||||
}, | |||||
{ | |||||
"name": "OPTIONS", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "allowOptions", | |||||
"options": { | |||||
"enabled": true | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Allow use of the OPTIONS HTTP request method." | |||||
}, | |||||
{ | |||||
"name": "PUT", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "allowPut", | |||||
"options": { | |||||
"enabled": false | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Allow use of the PUT HTTP request method." | |||||
}, | |||||
{ | |||||
"name": "DELETE", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "allowDelete", | |||||
"options": { | |||||
"enabled": false | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Allow use of the DELETE HTTP request method." | |||||
}, | |||||
{ | |||||
"name": "PATCH", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "allowPatch", | |||||
"options": { | |||||
"enabled": false | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Allow use of the PATCH HTTP request method." | |||||
} | |||||
], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "allHttpInCacheHierarchy", | |||||
"options": { | |||||
"enabled": true | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Allow the use of HTTP methods. Consider enabling additional methods under a path match for increased origin security." | |||||
}, | |||||
{ | |||||
"name": "Obfuscate debug info", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "cacheTagVisible", | |||||
"options": { | |||||
"behavior": "PRAGMA_HEADER" | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Do not expose back-end information unless the request contains the Pragma debug header." | |||||
}, | |||||
{ | |||||
"name": "Obfuscate backend info", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "modifyOutgoingResponseHeader", | |||||
"options": { | |||||
"action": "DELETE", | |||||
"customHeaderName": "X-Powered-By", | |||||
"standardDeleteHeaderName": "OTHER" | |||||
} | |||||
}, | |||||
{ | |||||
"name": "modifyOutgoingResponseHeader", | |||||
"options": { | |||||
"action": "DELETE", | |||||
"customHeaderName": "Server", | |||||
"standardDeleteHeaderName": "OTHER" | |||||
} | |||||
} | |||||
], | |||||
"criteria": [ | |||||
{ | |||||
"name": "requestHeader", | |||||
"options": { | |||||
"headerName": "X-Akamai-Debug", | |||||
"matchCaseSensitiveValue": true, | |||||
"matchOperator": "IS_NOT_ONE_OF", | |||||
"matchWildcardName": false, | |||||
"matchWildcardValue": false, | |||||
"values": [ | |||||
"true" | |||||
] | |||||
} | |||||
} | |||||
], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Do not expose back-end information unless the request contains an additional secret header. Regularly change the criteria to use a specific unique value for the secret header." | |||||
}, | |||||
{ | |||||
"name": "HSTS", | |||||
"children": [], | |||||
"behaviors": [ | |||||
{ | |||||
"name": "httpStrictTransportSecurity", | |||||
"options": { | |||||
"enable": false | |||||
} | |||||
} | |||||
], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Require all browsers to connect to your site using HTTPS." | |||||
} | |||||
], | |||||
"behaviors": [], | |||||
"criteria": [], | |||||
"criteriaMustSatisfy": "all", | |||||
"comments": "Control the settings that minimize the information your website shares with clients and malicious entities to reduce your exposure to threats." | |||||
} |
variable "edgerc" { | |||||
type = string | |||||
default = "~/.edgerc" | |||||
} | |||||
variable "section" { | |||||
type = string | |||||
} | |||||
variable "prefix" { | |||||
type = string | |||||
} | |||||
variable "contract_id" { | |||||
type = string | |||||
} | |||||
variable "group_id" { | |||||
type = string | |||||
} | |||||
variable "origin" { | |||||
type = string | |||||
} | |||||
variable "cpcodeId" { | |||||
type = number | |||||
} | |||||
variable "cpcodeName" { | |||||
type = string | |||||
} | |||||
variable "secure" { | |||||
type = bool | |||||
} | |||||
variable "network" { | |||||
default = "STAGING" | |||||
} | |||||
variable "hostname" { | |||||
type = string | |||||
} | |||||
variable "edge_hostname" { | |||||
type = string | |||||
} | |||||
variable "program" { | |||||
type = string | |||||
} | |||||
variable "email" { | |||||
type = string | |||||
} |
edgerc = "~/.edgerc" | |||||
section = "" | |||||
contract_id = "" | |||||
group_id = "" | |||||
origin = "" | |||||
cpcode =00000 | |||||
secure = true | |||||
network= "STAGING" | |||||
hostname= "" | |||||
edge_hostname = "" | |||||
program="devops" | |||||
prefix="" |
# This file is maintained automatically by "terraform init". | |||||
# Manual edits may be lost in future updates. | |||||
provider "registry.terraform.io/akamai/akamai" { | |||||
version = "5.2.0" | |||||
constraints = "5.2.0" | |||||
hashes = [ | |||||
"h1:lQUyWvLu9vp7ud7vT3USriQRigpaCB0Xpvsossh5iS8=", | |||||
"zh:055ea62de79f9e38b7b09d242a16a98b038056dab84118632dc9c0fc0473aab8", | |||||
"zh:11a740846dcf460addb90ed1810d932b9be459e765ab993c01bd29ef01e7b1b3", | |||||
"zh:3af4bd8e91135bd0b49f9267d4d31334de99480b9d69fde0a252e7e2c79264da", | |||||
"zh:4796ef159a46f547d38b50c230de532009190f97b2dadb75525b1ceedcd7f4bf", | |||||
"zh:5555f2a712caf3fd7565ae167b5c3d51b12cc6ef565b08d1e09f675dc6191bb8", | |||||
"zh:55a35537a79ec46fc3259e2c5181901a1b59d41531bd86fb544d9f2e093634df", | |||||
"zh:6e48b3a321bedf7c3592bddea157a1d4ce4bfc15f557512b3ce0fed3a4c8e8d2", | |||||
"zh:8e16c641227243cd112fe7e9f1a750c7318d0fb11d7f6ebcd268593f44c0cfe7", | |||||
"zh:9c6e23d1c2fd3cbec17256e33db59e229f0c2be2ac8860dbb50501d09d703317", | |||||
"zh:9dc835200345ab09806b63fde0b2e0ad95db5a13a8a10380e4882bfe47f13cfd", | |||||
"zh:c495e6403f81845ba0e54422f580db8cc52e401f5db44112e034bb4404e21aa1", | |||||
"zh:e6bc54100260d83c7070fb7326447421828eb1e6d999ced0cbbe9e7198e58afc", | |||||
"zh:e6c490e8b6a6b91a4124a4bd26c027d3a3f2b0a25af2a870c65d3f35f4cda1b9", | |||||
"zh:f569b65999264a9416862bca5cd2a6177d94ccb0424f3a4ef424428912b9cb3c", | |||||
] | |||||
} |
Mozilla Public License Version 2.0 | |||||
================================== | |||||
1. Definitions | |||||
-------------- | |||||
1.1. "Contributor" | |||||
means each individual or legal entity that creates, contributes to | |||||
the creation of, or owns Covered Software. | |||||
1.2. "Contributor Version" | |||||
means the combination of the Contributions of others (if any) used | |||||
by a Contributor and that particular Contributor's Contribution. | |||||
1.3. "Contribution" | |||||
means Covered Software of a particular Contributor. | |||||
1.4. "Covered Software" | |||||
means Source Code Form to which the initial Contributor has attached | |||||
the notice in Exhibit A, the Executable Form of such Source Code | |||||
Form, and Modifications of such Source Code Form, in each case | |||||
including portions thereof. | |||||
1.5. "Incompatible With Secondary Licenses" | |||||
means | |||||
(a) that the initial Contributor has attached the notice described | |||||
in Exhibit B to the Covered Software; or | |||||
(b) that the Covered Software was made available under the terms of | |||||
version 1.1 or earlier of the License, but not also under the | |||||
terms of a Secondary License. | |||||
1.6. "Executable Form" | |||||
means any form of the work other than Source Code Form. | |||||
1.7. "Larger Work" | |||||
means a work that combines Covered Software with other material, in | |||||
a separate file or files, that is not Covered Software. | |||||
1.8. "License" | |||||
means this document. | |||||
1.9. "Licensable" | |||||
means having the right to grant, to the maximum extent possible, | |||||
whether at the time of the initial grant or subsequently, any and | |||||
all of the rights conveyed by this License. | |||||
1.10. "Modifications" | |||||
means any of the following: | |||||
(a) any file in Source Code Form that results from an addition to, | |||||
deletion from, or modification of the contents of Covered | |||||
Software; or | |||||
(b) any new file in Source Code Form that contains any Covered | |||||
Software. | |||||
1.11. "Patent Claims" of a Contributor | |||||
means any patent claim(s), including without limitation, method, | |||||
process, and apparatus claims, in any patent Licensable by such | |||||
Contributor that would be infringed, but for the grant of the | |||||
License, by the making, using, selling, offering for sale, having | |||||
made, import, or transfer of either its Contributions or its | |||||
Contributor Version. | |||||
1.12. "Secondary License" | |||||
means either the GNU General Public License, Version 2.0, the GNU | |||||
Lesser General Public License, Version 2.1, the GNU Affero General | |||||
Public License, Version 3.0, or any later versions of those | |||||
licenses. | |||||
1.13. "Source Code Form" | |||||
means the form of the work preferred for making modifications. | |||||
1.14. "You" (or "Your") | |||||
means an individual or a legal entity exercising rights under this | |||||
License. For legal entities, "You" includes any entity that | |||||
controls, is controlled by, or is under common control with You. For | |||||
purposes of this definition, "control" means (a) the power, direct | |||||
or indirect, to cause the direction or management of such entity, | |||||
whether by contract or otherwise, or (b) ownership of more than | |||||
fifty percent (50%) of the outstanding shares or beneficial | |||||
ownership of such entity. | |||||
2. License Grants and Conditions | |||||
-------------------------------- | |||||
2.1. Grants | |||||
Each Contributor hereby grants You a world-wide, royalty-free, | |||||
non-exclusive license: | |||||
(a) under intellectual property rights (other than patent or trademark) | |||||
Licensable by such Contributor to use, reproduce, make available, | |||||
modify, display, perform, distribute, and otherwise exploit its | |||||
Contributions, either on an unmodified basis, with Modifications, or | |||||
as part of a Larger Work; and | |||||
(b) under Patent Claims of such Contributor to make, use, sell, offer | |||||
for sale, have made, import, and otherwise transfer either its | |||||
Contributions or its Contributor Version. | |||||
2.2. Effective Date | |||||
The licenses granted in Section 2.1 with respect to any Contribution | |||||
become effective for each Contribution on the date the Contributor first | |||||
distributes such Contribution. | |||||
2.3. Limitations on Grant Scope | |||||
The licenses granted in this Section 2 are the only rights granted under | |||||
this License. No additional rights or licenses will be implied from the | |||||
distribution or licensing of Covered Software under this License. | |||||
Notwithstanding Section 2.1(b) above, no patent license is granted by a | |||||
Contributor: | |||||
(a) for any code that a Contributor has removed from Covered Software; | |||||
or | |||||
(b) for infringements caused by: (i) Your and any other third party's | |||||
modifications of Covered Software, or (ii) the combination of its | |||||
Contributions with other software (except as part of its Contributor | |||||
Version); or | |||||
(c) under Patent Claims infringed by Covered Software in the absence of | |||||
its Contributions. | |||||
This License does not grant any rights in the trademarks, service marks, | |||||
or logos of any Contributor (except as may be necessary to comply with | |||||
the notice requirements in Section 3.4). | |||||
2.4. Subsequent Licenses | |||||
No Contributor makes additional grants as a result of Your choice to | |||||
distribute the Covered Software under a subsequent version of this | |||||
License (see Section 10.2) or under the terms of a Secondary License (if | |||||
permitted under the terms of Section 3.3). | |||||
2.5. Representation | |||||
Each Contributor represents that the Contributor believes its | |||||
Contributions are its original creation(s) or it has sufficient rights | |||||
to grant the rights to its Contributions conveyed by this License. | |||||
2.6. Fair Use | |||||
This License is not intended to limit any rights You have under | |||||
applicable copyright doctrines of fair use, fair dealing, or other | |||||
equivalents. | |||||
2.7. Conditions | |||||
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted | |||||
in Section 2.1. | |||||
3. Responsibilities | |||||
------------------- | |||||
3.1. Distribution of Source Form | |||||
All distribution of Covered Software in Source Code Form, including any | |||||
Modifications that You create or to which You contribute, must be under | |||||
the terms of this License. You must inform recipients that the Source | |||||
Code Form of the Covered Software is governed by the terms of this | |||||
License, and how they can obtain a copy of this License. You may not | |||||
attempt to alter or restrict the recipients' rights in the Source Code | |||||
Form. | |||||
3.2. Distribution of Executable Form | |||||
If You distribute Covered Software in Executable Form then: | |||||
(a) such Covered Software must also be made available in Source Code | |||||
Form, as described in Section 3.1, and You must inform recipients of | |||||
the Executable Form how they can obtain a copy of such Source Code | |||||
Form by reasonable means in a timely manner, at a charge no more | |||||
than the cost of distribution to the recipient; and | |||||
(b) You may distribute such Executable Form under the terms of this | |||||
License, or sublicense it under different terms, provided that the | |||||
license for the Executable Form does not attempt to limit or alter | |||||
the recipients' rights in the Source Code Form under this License. | |||||
3.3. Distribution of a Larger Work | |||||
You may create and distribute a Larger Work under terms of Your choice, | |||||
provided that You also comply with the requirements of this License for | |||||
the Covered Software. If the Larger Work is a combination of Covered | |||||
Software with a work governed by one or more Secondary Licenses, and the | |||||
Covered Software is not Incompatible With Secondary Licenses, this | |||||
License permits You to additionally distribute such Covered Software | |||||
under the terms of such Secondary License(s), so that the recipient of | |||||
the Larger Work may, at their option, further distribute the Covered | |||||
Software under the terms of either this License or such Secondary | |||||
License(s). | |||||
3.4. Notices | |||||
You may not remove or alter the substance of any license notices | |||||
(including copyright notices, patent notices, disclaimers of warranty, | |||||
or limitations of liability) contained within the Source Code Form of | |||||
the Covered Software, except that You may alter any license notices to | |||||
the extent required to remedy known factual inaccuracies. | |||||
3.5. Application of Additional Terms | |||||
You may choose to offer, and to charge a fee for, warranty, support, | |||||
indemnity or liability obligations to one or more recipients of Covered | |||||
Software. However, You may do so only on Your own behalf, and not on | |||||
behalf of any Contributor. You must make it absolutely clear that any | |||||
such warranty, support, indemnity, or liability obligation is offered by | |||||
You alone, and You hereby agree to indemnify every Contributor for any | |||||
liability incurred by such Contributor as a result of warranty, support, | |||||
indemnity or liability terms You offer. You may include additional | |||||
disclaimers of warranty and limitations of liability specific to any | |||||
jurisdiction. | |||||
4. Inability to Comply Due to Statute or Regulation | |||||
--------------------------------------------------- | |||||
If it is impossible for You to comply with any of the terms of this | |||||
License with respect to some or all of the Covered Software due to | |||||
statute, judicial order, or regulation then You must: (a) comply with | |||||
the terms of this License to the maximum extent possible; and (b) | |||||
describe the limitations and the code they affect. Such description must | |||||
be placed in a text file included with all distributions of the Covered | |||||
Software under this License. Except to the extent prohibited by statute | |||||
or regulation, such description must be sufficiently detailed for a | |||||
recipient of ordinary skill to be able to understand it. | |||||
5. Termination | |||||
-------------- | |||||
5.1. The rights granted under this License will terminate automatically | |||||
if You fail to comply with any of its terms. However, if You become | |||||
compliant, then the rights granted under this License from a particular | |||||
Contributor are reinstated (a) provisionally, unless and until such | |||||
Contributor explicitly and finally terminates Your grants, and (b) on an | |||||
ongoing basis, if such Contributor fails to notify You of the | |||||
non-compliance by some reasonable means prior to 60 days after You have | |||||
come back into compliance. Moreover, Your grants from a particular | |||||
Contributor are reinstated on an ongoing basis if such Contributor | |||||
notifies You of the non-compliance by some reasonable means, this is the | |||||
first time You have received notice of non-compliance with this License | |||||
from such Contributor, and You become compliant prior to 30 days after | |||||
Your receipt of the notice. | |||||
5.2. If You initiate litigation against any entity by asserting a patent | |||||
infringement claim (excluding declaratory judgment actions, | |||||
counter-claims, and cross-claims) alleging that a Contributor Version | |||||
directly or indirectly infringes any patent, then the rights granted to | |||||
You by any and all Contributors for the Covered Software under Section | |||||
2.1 of this License shall terminate. | |||||
5.3. In the event of termination under Sections 5.1 or 5.2 above, all | |||||
end user license agreements (excluding distributors and resellers) which | |||||
have been validly granted by You or Your distributors under this License | |||||
prior to termination shall survive termination. | |||||
************************************************************************ | |||||
* * | |||||
* 6. Disclaimer of Warranty * | |||||
* ------------------------- * | |||||
* * | |||||
* Covered Software is provided under this License on an "as is" * | |||||
* basis, without warranty of any kind, either expressed, implied, or * | |||||
* statutory, including, without limitation, warranties that the * | |||||
* Covered Software is free of defects, merchantable, fit for a * | |||||
* particular purpose or non-infringing. The entire risk as to the * | |||||
* quality and performance of the Covered Software is with You. * | |||||
* Should any Covered Software prove defective in any respect, You * | |||||
* (not any Contributor) assume the cost of any necessary servicing, * | |||||
* repair, or correction. This disclaimer of warranty constitutes an * | |||||
* essential part of this License. No use of any Covered Software is * | |||||
* authorized under this License except under this disclaimer. * | |||||
* * | |||||
************************************************************************ | |||||
************************************************************************ | |||||
* * | |||||
* 7. Limitation of Liability * | |||||
* -------------------------- * | |||||
* * | |||||
* Under no circumstances and under no legal theory, whether tort * | |||||
* (including negligence), contract, or otherwise, shall any * | |||||
* Contributor, or anyone who distributes Covered Software as * | |||||
* permitted above, be liable to You for any direct, indirect, * | |||||
* special, incidental, or consequential damages of any character * | |||||
* including, without limitation, damages for lost profits, loss of * | |||||
* goodwill, work stoppage, computer failure or malfunction, or any * | |||||
* and all other commercial damages or losses, even if such party * | |||||
* shall have been informed of the possibility of such damages. This * | |||||
* limitation of liability shall not apply to liability for death or * | |||||
* personal injury resulting from such party's negligence to the * | |||||
* extent applicable law prohibits such limitation. Some * | |||||
* jurisdictions do not allow the exclusion or limitation of * | |||||
* incidental or consequential damages, so this exclusion and * | |||||
* limitation may not apply to You. * | |||||
* * | |||||
************************************************************************ | |||||
8. Litigation | |||||
------------- | |||||
Any litigation relating to this License may be brought only in the | |||||
courts of a jurisdiction where the defendant maintains its principal | |||||
place of business and such litigation shall be governed by laws of that | |||||
jurisdiction, without reference to its conflict-of-law provisions. | |||||
Nothing in this Section shall prevent a party's ability to bring | |||||
cross-claims or counter-claims. | |||||
9. Miscellaneous | |||||
---------------- | |||||
This License represents the complete agreement concerning the subject | |||||
matter hereof. If any provision of this License is held to be | |||||
unenforceable, such provision shall be reformed only to the extent | |||||
necessary to make it enforceable. Any law or regulation which provides | |||||
that the language of a contract shall be construed against the drafter | |||||
shall not be used to construe this License against a Contributor. | |||||
10. Versions of the License | |||||
--------------------------- | |||||
10.1. New Versions | |||||
Mozilla Foundation is the license steward. Except as provided in Section | |||||
10.3, no one other than the license steward has the right to modify or | |||||
publish new versions of this License. Each version will be given a | |||||
distinguishing version number. | |||||
10.2. Effect of New Versions | |||||
You may distribute the Covered Software under the terms of the version | |||||
of the License under which You originally received the Covered Software, | |||||
or under the terms of any subsequent version published by the license | |||||
steward. | |||||
10.3. Modified Versions | |||||
If you create software not governed by this License, and you want to | |||||
create a new license for such software, you may create and use a | |||||
modified version of this License if you rename the license and remove | |||||
any references to the name of the license steward (except to note that | |||||
such modified license differs from this License). | |||||
10.4. Distributing Source Code Form that is Incompatible With Secondary | |||||
Licenses | |||||
If You choose to distribute Source Code Form that is Incompatible With | |||||
Secondary Licenses under the terms of this version of the License, the | |||||
notice described in Exhibit B of this License must be attached. | |||||
Exhibit A - Source Code Form License Notice | |||||
------------------------------------------- | |||||
This Source Code Form is subject to the terms of the Mozilla Public | |||||
License, v. 2.0. If a copy of the MPL was not distributed with this | |||||
file, You can obtain one at http://mozilla.org/MPL/2.0/. | |||||
If it is not possible or desirable to put the notice in a particular | |||||
file, then You may include the notice in a location (such as a LICENSE | |||||
file in a relevant directory) where a recipient would be likely to look | |||||
for such a notice. | |||||
You may add additional accurate notices of copyright ownership. | |||||
Exhibit B - "Incompatible With Secondary Licenses" Notice | |||||
--------------------------------------------------------- | |||||
This Source Code Form is "Incompatible With Secondary Licenses", as | |||||
defined by the Mozilla Public License, v. 2.0. |
Akamai Provider for Terraform | |||||
================== | |||||
 | |||||
[](https://goreportcard.com/report/github.com/akamai/terraform-provider-akamai/v5) | |||||
 | |||||
[](https://opensource.org/licenses/MPL-2.0) | |||||
[](https://pkg.go.dev/github.com/akamai/terraform-provider-akamai/v5) | |||||
Use the Akamai Provider to manage and provision your Akamai configurations in Terraform. You can use the Akamai Provider for many Akamai products. | |||||
## Requirements | |||||
- [Terraform](https://www.terraform.io/downloads.html) 0.12.x | |||||
## Installation | |||||
To automatically install the Akamai Provider, run `terraform init` on a configuration. | |||||
## Documentation | |||||
You can find documentation for the Akamai Provider on the [Terraform Website](https://registry.terraform.io/providers/akamai/akamai/latest/docs). |
{ | |||||
"version": 4, | |||||
"terraform_version": "1.4.5", | |||||
"serial": 16, | |||||
"lineage": "39d89901-571f-fff3-311e-9945ccc5cb2d", | |||||
"outputs": {}, | |||||
"resources": [], | |||||
"check_results": null | |||||
} |