GuideReference
TrainingSupportCommunity
Guide

Include activation

akamai_property_include_activation

 Average processing time 3–4 minutes

Activate your include and make it available to a property.

resource "akamai_property_include_activation" "my_include_activation" {
  include_id    = "123456"
  contract_id   = "C-0N7RAC7"
  group_id      = "12345"
  version       = 1
  network       = "STAGING"
  notify_emails = [
      "josmith@example.com",
      "jasmith@example.com",
  ]
  timeouts {
    default = "1h"
  }
}

Arguments

Pass your contract, group, and include IDs along with other details to activate an include.

ArgumentRequiredDescription
include_idAn include's ID you want to activate.
contract_idYour contract's ID.
group_idYour group's ID.
versionThe version of the include you want to activate.
networkThe Akamai network for which the activation will be performed. Possible values: STAGING or PRODUCTION.
notify_emailsThe list of email addresses to notify of the activation status change.
noteA human-readable message about the activation request.

Note: A note change doesn't trigger a new property activation.
auto_acknowledge_rule_warningsWhether to automatically acknowledge all rule warnings for activation and continue.
  • true automatically acknowledges all rule warnings.
  • false doesn't.
timeoutsA default argument to override the HashiCorp processing timeout of 20 minutes. Value is a string containing a number and its time reference, h, m, s. You can pass one, two, or all values. For example:
  • 1h3m5s
  • 2h5m
  • 3m

Attributes

There is no default standard output. Upon creation, the last line of the process log contains your contract, group, and include ID with information on which network the include has been activated.

Adding an output block returns basic information about your active include.

AttributeDescription
auto_acknowledge_rule_warningsWhether to automatically acknowledge all rule warnings for activation and continue.
contract_idYour contract's ID.
group_idYour group's ID.
idYour resource's ID.
include_idAn include's ID you've activated.
networkThe Akamai network for which the activation has been performed.
noteA human-readable message about the activation request.
notify_emailsThe list of email addresses to notify of the activation status change.
timeoutsA default argument that overrides the HashiCorp processing timeout of 20 minutes.
validationsThe validation information in JSON format.
versionThe version of the include you've activated.