CIDR block
akamai_iam_cidr_block
Get the details of a specified CIDR block.
data "akamai_iam_cidr_block" "my_cird_block" {
cidr_block_id = 12345
}
output "my_cird_block" {
value = data.akamai_iam_cidr_block.my_cird_block
}
my_cird_block = {
actions = {
delete = true
edit = true
}
cidr_block = "123.4.5.6/78"
cidr_block_id = 12345
comments = "APAC Region"
created_by = "jsmith@email.com"
created_date = "2023-05-28T16:08:15Z"
enabled = true
modified_by = "jsmith@email.com"
modified_date = "2024-09-15T16:08:15Z"
}
Argument
Pass the CIDR block ID in the data
block to get its details.
Attributes
Returned to you are the details of the given CIDR block.
Attribute | Description |
---|---|
actions | The operations you can perform on the CIDR list.
|
cidr_block_id | The CIDR block's ID. |
cidr_block | The value of an IP address or IP address range. |
comments | The human-readable details about your CIDR block. |
created_by | The user who created the CIDR block. |
created_date | The date when the CIDR block was created in ISO 8601 format. |
enabled | Whether the CIDR block is enabled.
|
modified_by | The user who last edited the CIDR block. |
modified_date | The date when the CIDR block was last modified in ISO 8601 format. |
Updated 3 days ago