GuideReference
TrainingSupportCommunity
Guide

Blocked properties

akamai_iam_blocked_properties

Get a list of properties a user cannot access.

data "akamai_iam_blocked_properties" "my_blocked_properties" {
  contract_id     = "C-0N7RAC7"
  group_id        = 12345
  ui_identity_id  = "A-BC-987654"
}

output "my_blocked_properties" {
  value = data.akamai_iam_blocked_properties.my_blocked_properties
}
Changes to Outputs:
  + my_blocked_properties = {
      + blocked_properties = [
          + {
              + asset_id    = 5678901
              + property_id = "prp_12345"
            },
          + {
              + asset_id    = 5678901
              + property_id = "prp_98765"
            },
        ]
      + co
      + contract_id        = "C-0N7RAC7"
      + group_id           = 12345
      + ui_identity_id     = "A-BC-987654"
    }

Arguments

Pass all arguments to get a list of the given user's blocked properties.

ArgumentRequiredDescription
group_id✔️A group ID.
contract_id✔️A contract ID.
ui_identity_id✔️The user's UI ID.

Attributes

Returned is a list of the given user's blocked_properties by property_id and asset_id.