Skip to main content

admin_scopes

Creates, updates, deletes, gets or lists an admin_scopes resource.

Overview

Nameadmin_scopes
TypeResource
Idaws.fms.admin_scopes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
admin_scopeobjectContains details about the administrative scope of the requested account.
statusstringThe current status of the request to onboard a member account as an Firewall Manager administrator. ONBOARDING - The account is onboarding to Firewall Manager as an administrator. ONBOARDING_COMPLETE - Firewall Manager The account is onboarded to Firewall Manager as an administrator, and can perform actions on the resources defined in their AdminScope. OFFBOARDING - The account is being removed as an Firewall Manager administrator. OFFBOARDING_COMPLETE - The account has been removed as an Firewall Manager administrator. (ONBOARDING, ONBOARDING_COMPLETE, OFFBOARDING, OFFBOARDING_COMPLETE)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_admin_scopeselectregionReturns information about the specified account's administrative scope. The administrative scope defines the resources that an Firewall Manager administrator can manage.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns information about the specified account's administrative scope. The administrative scope defines the resources that an Firewall Manager administrator can manage.

SELECT
admin_scope,
status
FROM aws.fms.admin_scopes
WHERE region = '{{ region }}' -- required
;