data "akamai_property_rules_template" "rules-template" { template_file = abspath("${path.root}/property-snippets/main.json") variables { name = "secure" value = "${var.secure}" type = "bool" } variables { name = "cp_code_id" value = "${var.cp_code_id}" type = "number" } variables { name = "Prefix" value = "${var.Prefix}" type = "string" } variables { name = "origin_hostname" value = "${var.origin_hostname}" type = "string" } } resource "akamai_property" "lab_property" { name = "${var.Prefix}-malwarelab" product_id = "prd_SPM" contract_id = "ctr_${var.contract_id}" group_id = "grp_${var.group_id}" hostnames { cname_from = "${var.Prefix}malware.gslab-juiceshop.com" cname_to = var.edge_hostname cert_provisioning_type = "CPS_MANAGED" } rule_format = "v2024-08-13" rules = data.akamai_property_rules_template.rules-template.json } resource "akamai_property_activation" "activation_staging" { property_id = "${akamai_property.lab_property.id}" version = "${akamai_property.lab_property.latest_version}" network = "${var.network}" contact = ["${var.email}"] note = "Malware Protection Lab" auto_acknowledge_rule_warnings = true timeouts { default = "1h" } } data "akamai_property_hostnames" "property_hostnames" { contract_id = "ctr_${var.contract_id}" group_id = "grp_${var.group_id}" property_id = "${akamai_property.lab_property.id}" } output "property_id" { value = "${akamai_property.lab_property.id}" } output "property_hostnames" { value = data.akamai_property_hostnames.property_hostnames.hostnames }