You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

nl.tf 649B

12345678910111213141516171819
  1. resource "akamai_networklist_network_list" "network_list" {
  2. name = "${var.user_id}-tfab-NL"
  3. type = "GEO"
  4. description = "This is a network list for the AkaU AppSec Terraform lab."
  5. list = var.geo_block_list
  6. mode = "APPEND"
  7. }
  8. output "geo_block_network_list_id" {
  9. value = akamai_networklist_network_list.network_list.network_list_id
  10. }
  11. resource "akamai_networklist_activations" "activation" {
  12. network_list_id = akamai_networklist_network_list.network_list.uniqueid
  13. network = var.network
  14. notes = "AkaU AppSec Terraform lab"
  15. sync_point = 0
  16. notification_emails = [var.email]
  17. }