Provision Terraform
Terraform is an infrastructure as code (IaC) tool that enables a multi-vendor approach to infrastructure management. With Terraform, you can build, change, and version your infrastructure safely and efficiently. This includes low-level components such as compute instances, storage, and networking, as well as high-level components such as DNS entries and SaaS features.
You can use the Akamai Terraform Provider to manage and provision your Property Manager, Application Security, Edge DNS, and Global Traffic Management configurations in Terraform.
Click USE PROVIDER to get this code snippet:
terraform {
required_providers {
akamai = {
source = "akamai/akamai"
version = "3.6.0"
}
}
}
provider "akamai" {
# Configuration options
}
Run terraform init
to install the plugin.
See the Terraform guide for more information about the Akamai Terraform Provider.
Find out more in this video:
Updated 14 days ago