Include

akamai_property_include

Get details about a specific include.

data "akamai_property_include" "my_property_include" { contract_id = "C-0N7RAC7" group_id = "12345" include_id = "123456" } output "my_property_include" { value = data.akamai_property_include.my_property_include }
Changes to Outputs: + my_property_include = { + contract_id = "C-0N7RAC7" + group_id = "12345" + id = "123456" + include_id = "123456" + latest_version = 1 + name = "my-property-include" + production_version = null + staging_version = 1 + type = "MICROSERVICES" }

Arguments

Send your contract, group, and include IDs in the body of the declaration to get an include's information.

ArgumentRequiredDescription
contract_idYour contract's ID.
group_idYour group's ID.
include_idYour include's ID.

Attributes

Returned to you is a computed set that contains the include's details.

AttributeDescription
contract_idYour contract's ID.
group_idYour group's ID.
idYour data source's ID.
include_idYour include's ID.
nameThe human-readable, descriptive name for your include.
latest_version The most recent version of your include.
staging_versionThe include version currently active on the staging network.
production_versionThe include version currently active on the production network.
typeThe type of include. Contains either:
  • MICROSERVICES. Allows different teams to work independently on different parts of a single site.
  • COMMON_SETTINGS. Useful for configurations that share a large number of settings, often managed by a central team.

Did this page help you?