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.
Argument | Required | Description |
---|---|---|
contract_id | ✔ | Your contract's ID. |
group_id | ✔ | Your group's ID. |
include_id | ✔ | Your include's ID. |
Attributes
Returned to you is a computed set that contains the include's details.
Attribute | Description |
---|---|
contract_id | Your contract's ID. |
group_id | Your group's ID. |
id | Your data source's ID. |
include_id | Your include's ID. |
name | The human-readable, descriptive name for your include. |
latest_version | The most recent version of your include. |
staging_version | The include version currently active on the staging network. |
production_version | The include version currently active on the production network. |
type | The type of include. Contains either:
|
Updated 4 months ago