shared_vpc_configurations
Creates, updates, deletes, gets or lists a shared_vpc_configurations resource.
Overview
| Name | shared_vpc_configurations |
| Type | Resource |
| Id | aws.fsx.shared_vpc_configurations |
Fields
The following fields are returned by SELECT queries:
- describe_shared_vpc_configuration
| Name | Datatype | Description |
|---|---|---|
enable_fsx_route_table_updates_from_participant_accounts | string | Indicates 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_shared_vpc_configuration | select | region | 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. | |
update_shared_vpc_configuration | update | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_shared_vpc_configuration
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
- update_shared_vpc_configuration
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;