1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- data "akamai_property_rules_template" "template-update" {
- template_file = abspath("${path.root}/property-snippets/main.json")
- variables {
- name = "secure"
- value = "${var.secure}"
- type = "bool"
- }
- variables {
- name = "origin"
- value = "${var.origin}"
- type = "string"
- }
- variables {
- name = "cpcodeId"
- value = "${var.cpcodeId}"
- type = "number"
- }
- variables {
- name = "cpcodeName"
- value = "${var.cpcodeName}"
- type = "string"
- }
- }
-
- resource "akamai_property" "ion_premier" {
- name = "${var.UserID}-${var.program}"
- product_id = "prd_SPM"
- contract_id = "ctr_${var.contract_id}"
- group_id = "grp_${var.group_id}"
- hostnames {
- cname_from = "${var.UserID}${var.program}.${var.hostname}"
- cname_to = var.edge_hostname
- cert_provisioning_type = "CPS_MANAGED"
- }
- rule_format = "latest"
- rules = data.akamai_property_rules_template.template-update.json
- }
-
- output "property_id" {
- value = "${akamai_property.ion_premier.id}"
- }
- output "property_version" {
- value = "${akamai_property.ion_premier.latest_version}"
- }
-
- resource "akamai_property_activation" "activation_staging" {
- property_id = "${akamai_property.ion_premier.id}"
- version = "${akamai_property.ion_premier.latest_version}"
- network = "${var.network}"
- contact = ["${var.email}"]
- note = "Automatic deployment for PowerShell Lab"
- auto_acknowledge_rule_warnings = true
- }
|