Skip to main content

shared_vpc_configurations

Creates, updates, deletes, gets or lists a shared_vpc_configurations resource.

Overview

Nameshared_vpc_configurations
TypeResource
Idaws.fsx.shared_vpc_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
enable_fsx_route_table_updates_from_participant_accountsstringIndicates whether participant accounts can create FSx for ONTAP Multi-AZ file systems in shared subnets. (pattern: <code>^(?i)(true|false)$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_shared_vpc_configurationselectregionIndicates whether participant accounts in your organization can create Amazon FSx for NetApp ONTAP Multi-AZ file systems in subnets that are shared by a virtual private cloud (VPC) owner. For more information, see Creating FSx for ONTAP file systems in shared subnets.
update_shared_vpc_configurationupdateregionConfigures whether participant accounts in your organization can create Amazon FSx for NetApp ONTAP Multi-AZ file systems in subnets that are shared by a virtual private cloud (VPC) owner. For more information, see the Amazon FSx for NetApp ONTAP User Guide. We strongly recommend that participant-created Multi-AZ file systems in the shared VPC are deleted before you disable this feature. Once the feature is disabled, these file systems will enter a MISCONFIGURED state and behave like Single-AZ file systems. For more information, see Important considerations before disabling shared VPC support for Multi-AZ file systems.

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

Indicates whether participant accounts in your organization can create Amazon FSx for NetApp ONTAP Multi-AZ file systems in subnets that are shared by a virtual private cloud (VPC) owner. For more information, see Creating FSx for ONTAP file systems in shared subnets.

SELECT
enable_fsx_route_table_updates_from_participant_accounts
FROM aws.fsx.shared_vpc_configurations
WHERE region = '{{ region }}' -- required
;

UPDATE examples

Configures whether participant accounts in your organization can create Amazon FSx for NetApp ONTAP Multi-AZ file systems in subnets that are shared by a virtual private cloud (VPC) owner. For more information, see the Amazon FSx for NetApp ONTAP User Guide. We strongly recommend that participant-created Multi-AZ file systems in the shared VPC are deleted before you disable this feature. Once the feature is disabled, these file systems will enter a MISCONFIGURED state and behave like Single-AZ file systems. For more information, see Important considerations before disabling shared VPC support for Multi-AZ file systems.

UPDATE aws.fsx.shared_vpc_configurations
SET
EnableFsxRouteTableUpdatesFromParticipantAccounts = '{{ EnableFsxRouteTableUpdatesFromParticipantAccounts }}',
ClientRequestToken = '{{ ClientRequestToken }}'
WHERE
region = '{{ region }}' --required
RETURNING
enable_fsx_route_table_updates_from_participant_accounts;