Policy types for @turbot/aws-organizations

AWS > Organizations > API Enabled

Configure whether the AWS Organizations API is enabled.

Note: Disabling the service disables the API for ALL users and roles, and Turbot will have no access to the API.

URI
tmod:@turbot/aws-organizations#/policy/types/organizationsApiEnabled
Valid Value
[
"Enabled",
"Disabled",
"Enabled if AWS > Organizations > Enabled"
]
Schema
{
"type": "string",
"enum": [
"Enabled",
"Disabled",
"Enabled if AWS > Organizations > Enabled"
],
"default": "Enabled"
}

AWS > Organizations > Enabled

Configure whether the AWS Organizations service is enabled. This will only affect Turbot managed User Roles and will allow the Turbot managed user to access AWS Organizations service.

  • Enabled policy allows Turbot managed users to perform all the actions for the service
  • Enabled: Metadata Only policy allows Turbot managed users to perform only the metadata level actions for the service (like describe*, list*)

Note:

  • Disabled policy disables the service but does NOT disable the API for Turbot or SuperUsers
  • All the resource data stored in the Turbot CMDB is considered to be metadata
  • For more information related to permissions and grant levels, please check the documentation
URI
tmod:@turbot/aws-organizations#/policy/types/organizationsEnabled
Valid Value
[
"Enabled",
"Enabled: Metadata Only",
"Disabled"
]
Schema
{
"type": "string",
"enum": [
"Enabled",
"Enabled: Metadata Only",
"Disabled"
],
"example": [
"Enabled"
],
"default": "Disabled"
}

AWS > Organizations > Organization > CMDB

Configure whether to record and synchronize details for the AWS Organizations organization into the CMDB.

The CMDB control is responsible for populating and updating all the attributes for that resource type in the Turbot CMDB. All policies and controls in Turbot are based around the resource, so usually the CMDB policy is set to "Enforce: Enabled".

If set to Skip then all changes to the CMDB are paused - no new resources will be discovered, no updates will be made and deleted resources will not be removed.

To cleanup resources and stop tracking changes, set this policy to "Enforce: Disabled".

URI
tmod:@turbot/aws-organizations#/policy/types/organizationCmdb
Category
Default Template Input
"{\n account {\n Id: get(path:\"Id\")\n MasterAccountId: get(path: \"Organization.MasterAccountId\")\n }\n}\n"
Default Template
"{% if ($.account.Id is not null) and ($.account.Id === $.account.MasterAccountId) %} 'Enforce: Enabled' {%- else %} 'Skip' {% endif %}"
Schema
{
"type": "string",
"enum": [
"Skip",
"Enforce: Enabled",
"Enforce: Disabled"
],
"example": [
"Skip"
]
}

AWS > Organizations > Organization Root > CMDB

Configure whether to record and synchronize details for the AWS Organizations organization root into the CMDB.

The CMDB control is responsible for populating and updating all the attributes for that resource type in the Turbot CMDB. All policies and controls in Turbot are based around the resource, so usually the CMDB policy is set to "Enforce: Enabled".

If set to Skip then all changes to the CMDB are paused - no new resources will be discovered, no updates will be made and deleted resources will not be removed.

To cleanup resources and stop tracking changes, set this policy to "Enforce: Disabled".

URI
tmod:@turbot/aws-organizations#/policy/types/organizationRootCmdb
Category
Valid Value
[
"Skip",
"Enforce: Enabled",
"Enforce: Disabled"
]
Schema
{
"type": "string",
"enum": [
"Skip",
"Enforce: Enabled",
"Enforce: Disabled"
],
"example": [
"Skip"
],
"default": "Enforce: Enabled"
}

AWS > Organizations > Organizational Account > CMDB

Configure whether to record and synchronize details for the AWS Organizations organizational account into the CMDB.

The CMDB control is responsible for populating and updating all the attributes for that resource type in the Turbot CMDB. All policies and controls in Turbot are based around the resource, so usually the CMDB policy is set to "Enforce: Enabled".

If set to Skip then all changes to the CMDB are paused - no new resources will be discovered, no updates will be made and deleted resources will not be removed.

To cleanup resources and stop tracking changes, set this policy to "Enforce: Disabled".

URI
tmod:@turbot/aws-organizations#/policy/types/organizationalAccountCmdb
Category
Valid Value
[
"Skip",
"Enforce: Enabled",
"Enforce: Disabled"
]
Schema
{
"type": "string",
"enum": [
"Skip",
"Enforce: Enabled",
"Enforce: Disabled"
],
"example": [
"Skip"
],
"default": "Enforce: Enabled"
}

AWS > Organizations > Organizational Unit > CMDB

Configure whether to record and synchronize details for the AWS Organizations organizational unit into the CMDB.

The CMDB control is responsible for populating and updating all the attributes for that resource type in the Turbot CMDB. All policies and controls in Turbot are based around the resource, so usually the CMDB policy is set to "Enforce: Enabled".

If set to Skip then all changes to the CMDB are paused - no new resources will be discovered, no updates will be made and deleted resources will not be removed.

To cleanup resources and stop tracking changes, set this policy to "Enforce: Disabled".

URI
tmod:@turbot/aws-organizations#/policy/types/organizationalUnitCmdb
Category
Valid Value
[
"Skip",
"Enforce: Enabled",
"Enforce: Disabled"
]
Schema
{
"type": "string",
"enum": [
"Skip",
"Enforce: Enabled",
"Enforce: Disabled"
],
"example": [
"Skip"
],
"default": "Enforce: Enabled"
}

AWS > Organizations > Permissions

Configure whether permissions policies are in effect for AWS Organizations.

This setting does not affect account level permissions (AWS/Admin, AWS/Owner, etc)

Note: The behavior of this policy depends on the value of AWS > Permissions.

URI
tmod:@turbot/aws-organizations#/policy/types/organizationsPermissions
Valid Value
[
"Enabled",
"Disabled",
"Enabled if AWS > Organizations > Enabled & AWS > Organizations > API Enabled"
]
Schema
{
"type": "string",
"enum": [
"Enabled",
"Disabled",
"Enabled if AWS > Organizations > Enabled & AWS > Organizations > API Enabled"
],
"example": [
"Enabled"
],
"default": "Enabled if AWS > Organizations > Enabled & AWS > Organizations > API Enabled"
}

AWS > Organizations > Permissions > Levels

Define the permissions levels that can be used to grant access to an AWS account. Permissions levels defined will appear in the UI to assign access to Turbot users. This policy provides a default for Permissions > Levels in each service, however you can explicitly override the setting for each service if desired

URI
tmod:@turbot/aws-organizations#/policy/types/organizationsPermissionsLevels
Default Template Input
[
"{\n item: account {\n turbot{\n id\n }\n }\n}\n",
"{\n availableLevels: policyValues(filter:\"policyTypeLevel:self resourceId:{{ $.item.turbot.id }} policyTypeId:'tmod:@turbot/aws-iam#/policy/types/permissionsLevelsDefault'\") {\n items {\n value\n }\n }\n}\n"
]
Default Template
"{% if $.availableLevels.items[0].value | length == 0 %} [] {% endif %}{% for item in $.availableLevels.items[0].value %}- {{ item }}\n{% endfor %}"
Schema
{
"type": "array",
"items": {
"type": "string",
"enum": [
"Metadata",
"ReadOnly",
"Operator",
"Admin",
"Owner"
]
}
}

AWS > Organizations > Permissions > Levels > Modifiers

A map of AWS API to Turbot Permission Level used to customize Turbot's standard permissions. You can add, remove or redefine the mapping of AWS API operations to Turbot permissions levels here.

Note: Modifiers are cumulative - if you add a permission to the Metadata level, it is also added to ReadOnly, Operator and Admin. Modifier policies set here apply ONLY to the AWS level

example:
- "glacier:createvault": admin
- "glacier:ListVaults": metadata
- "s3:DeleteBucket": none
URI
tmod:@turbot/aws-organizations#/policy/types/organizationsPermissionsLevelsModifiers

AWS > Organizations > Permissions > Lockdown

URI
tmod:@turbot/aws-organizations#/policy/types/organizationsPermissionsLockdown
Targets

AWS > Organizations > Permissions > Lockdown > API Boundary

Configure whether the AWS organizations API is enabled for all users and roles in turbot-managed boundary policies.

Note: Disabling the service disables the API for ALL users and roles, and Turbot will have no access to the API.

URI
tmod:@turbot/aws-organizations#/policy/types/organizationsPermissionsLockdownApiBoundary
Valid Value
[
"Enabled if AWS > Organizations > API Enabled"
]
Schema
{
"type": "string",
"enum": [
"Enabled if AWS > Organizations > API Enabled"
],
"example": [
"Enabled if AWS > Organizations > API Enabled"
],
"default": "Enabled if AWS > Organizations > API Enabled"
}

AWS > Turbot > Event Handlers > Events > Rules > Event Sources > @turbot/aws-organizations

AWS Organizations CloudWatch Events event sources for the Turbot Event Handlers.

URI
tmod:@turbot/aws-organizations#/policy/types/organizationsEventSources
Default Template Input
"{\n account {\n Id: get(path: \"Id\")\n MasterAccountId: get(path: \"Organization.MasterAccountId\")\n }\n region {\n Name: get(path: \"Name\")\n }\n}\n"
Default Template
"{% if ($.account.Id === $.account.MasterAccountId) and ($.region.Name === "us-east-1") %}"aws.organizations"{% else %}[]{% endif %}"
Schema
{
"type": "array",
"items": {
"type": "string"
}
}

AWS > Turbot > Permissions > Compiled > API Boundary > @turbot/aws-organizations

A read-only policy generated by Turbot that lists the APIs that should be added to the turbot-managed (hard) boundary policy, thereby enabling them to be assigned to users and roles. This value will change depending on the value of the value of the AWS > Organizations > Permissions > Lockdown > API Boundary policy

URI
tmod:@turbot/aws-organizations#/policy/types/awsCompiledApiBoundary
Schema
{
"type": "array"
}

AWS > Turbot > Permissions > Compiled > Levels > @turbot/aws-organizations

A calculated policy that Turbot uses to create a compiled list of ALL permissions for AWS Organizations that is used as input to the stack that manages the Turbot IAM permissions objects.

URI
tmod:@turbot/aws-organizations#/policy/types/awsLevelsCompiled

AWS > Turbot > Permissions > Compiled > Service Permissions > @turbot/aws-organizations

A calculated policy that Turbot uses to create a compiled list of ALL permissions for AWS Organizations that is used as input to the control that manages the IAM stack.

URI
tmod:@turbot/aws-organizations#/policy/types/awsCompiledServicePermissions