GuideReference
Guide

Version notes

akamai_appsec_version_notes

Updates the version notes for a security configuration.

Scopes: Security configuration

Example

terraform { required_providers { akamai = { source = "akamai/akamai" } } } provider "akamai" { edgerc = "~/.edgerc" } data "akamai_appsec_configuration" "configuration" { name = "Documentation" } // USE CASE: User wants to update the version notes for the latest version of a security configuration. resource "akamai_appsec_version_notes" "version_notes" { config_id = data.akamai_appsec_configuration.configuration.config_id version_notes = "This version enables reputation profiles." } output "version_notes" { value = akamai_appsec_version_notes.version_notes.output_text }

Argument reference

This resource supports the following arguments:

  • config_id (Required). Unique identifier of the security configuration whose version notes are being modified.
  • version_notes (Required). Brief description of the security configuration version.

Output options

The following options can be used to determine the information returned, and how that returned information is formatted:

  • output_text. Tabular report showing the updated version notes.

Did this page help you?