As a hub administrator, you can review and subsequently accept or reject pending VPC spokes that a spoke administrator has proposed from a different project from the hub.
After a spoke is accepted or rejected, you can reject it or accept it as many times as necessary by running the commands described on this page.
Additionally, you can accept or reject updates to VPC spokes on the hub that are from different projects. The only spoke property that requires your approval to update is whether the spoke exports IPv6 subnet ranges. Updating other properties doesn't require approval. For more information about updating spokes, see Update a spoke.
You can also set up auto-accept projects for spoke groups into a hub. Auto-accept lets you automatically accept into the hub any spokes or spoke updates that are in auto-accept projects, without having to review each spoke proposal.
View proposals pending review
This section describes how to list all spoke proposals and view the details of an update proposal.
Console
In the Google Cloud console, go to Network Connectivity Center.
In the project menu, select the project that contains the hub for which you want to list the existing spokes.
In the Hub tab, select the hub.
Click the Spoke tab. All the spokes attached to that hub are listed.
To view the status for a specific spoke, check the Spoke status column.
- New proposed spokes that are pending review have an
Inactive, pending
status.
- New proposed spokes that are pending review have an
gcloud
To list proposals pending review, run the
gcloud network-connectivity hubs list-spokes
command.gcloud network-connectivity hubs list-spokes HUB_NAME \ --filter="reasons:STATE_REASON" \ --format=yaml
Replace the following:
HUB_NAME
: the name of the hub for which you want to review proposals, such asmy-hub
.STATE_REASON
: the state reason to filter on:PENDING_REVIEW
: Use this value to view new spoke proposals.UPDATE_PENDING_REVIEW
: Use this value to view proposals for updates to existing spokes. For spoke update proposals, the command output shows the proposed update in theproposed_include_export_ranges
field.
API
To list proposals that are pending review for a hub, use the
networkconnectivity.hubs.listSpokes
method.GET https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/global/hubs/HUB_NAME:listSpokes?filter=reasons=STATE_REASON
Replace the following values:
PROJECT_ID
: the project ID of the project that contains the spokes to listHUB_NAME
: the name of the hub for which you want to view spoke proposals pending reviewSTATE_REASON
: the state reason to filter on:PENDING_REVIEW
: Use this value to view new spoke proposals.UPDATE_PENDING_REVIEW
: Use this value to view proposals for updates to existing spokes. For spoke update proposals, the response shows the proposed update in theproposed_include_export_ranges
field.
Accept a spoke proposal
This section describes how to accept proposals for new spokes or updates to existing spokes.
Console
In the Google Cloud console, go to Network Connectivity Center.
In the project menu, select the project that contains the hub for which you want to list the existing spokes.
On the Hub tab, select the hub.
Click the Spoke tab. All the spokes attached to that hub are listed.
To view details for a specific spoke, click the spoke name.
To accept the proposal, click Accept spoke.
The Network Connectivity Center page updates to show details about the spokes that you accepted and the spoke status changes to
Active
.
You can also select multiple spokes for a bulk accept. However, as the hub administrator, before accepting a spoke, you must check the VPC spoke filters for each spoke by clicking the individual spoke name and checking the spoke details.
gcloud
To accept a proposed spoke to connect to a hub, run the
gcloud network-connectivity hubs accept-spoke
command.gcloud network-connectivity hubs accept-spoke HUB_NAME \ --spoke=SPOKE_URI
Replace the following:
HUB_NAME
: the name of the hub that is receiving the spoke proposalSPOKE_URI
: the URI of the spoke that you want to accept into the hub
To accept proposed updates to a spoke connected to a hub, follow these steps:
Follow the Google Cloud CLI instructions to list spokes and record the spoke's
etag
value from the output.Run the
gcloud network-connectivity hubs accept-spoke-update
command.gcloud network-connectivity hubs accept-spoke-update HUB_NAME \ --spoke=SPOKE_URI \ --spoke-etag=ETAG
Replace the following:
HUB_NAME
: the name of the hub that is receiving the spoke proposalSPOKE_URI
: the URI of the spoke that you want to accept into the hubETAG
: theetag
value of the VPC spoke for which you want to accept updates
API
To accept a proposed spoke, use the
networkconnectivity.hubs.acceptSpoke
method.POST https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/global/hubs/HUB_NAME:acceptSpoke { "spokeUri": SPOKE_URI }
Replace the following:
PROJECT_ID
: the ID of the project that contains the hubHUB_NAME
: the name of the hub that is receiving the spoke proposalSPOKE_URI
: the URI of the spoke that you want to accept into the hub
To accept proposed updates to a spoke connected to a hub, follow these steps:
Follow the API instructions to list spokes and record the spoke's
etag
value from the output.To accept proposed updates to a spoke, use the
networkconnectivity.hubs.acceptSpokeUpdate
method.POST https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/global/hubs/HUB_NAME:acceptSpokeUpdate { "spokeUri": SPOKE_URI, "spokeEtag": ETAG }
Replace the following:
PROJECT_ID
: the ID of the project that contains the hubHUB_NAME
: the name of the hub that is receiving the spoke proposalSPOKE_URI
: the URI of the spoke that you want to accept into the hubETAG
: theetag
value of the VPC spoke for which you want to accept updates
Reject a spoke proposal
This section describes how to reject proposals for new spokes or updates to existing spokes.
Console
In the Google Cloud console, go to Network Connectivity Center.
In the project menu, select the project that contains the hub for which you want to list the existing spokes.
In the Hub tab, select the hub.
Click the Spoke tab. All the spokes attached to that hub are listed.
To view details for a specific spoke, click the spoke name.
To reject the proposal, do the following:
- Click Reject spoke.
- In the Reject spoke? dialog, confirm the rejection and optionally, provide a reason for the rejection.
- Click Reject again.
The Network Connectivity Center page updates to show details about the spokes that
you rejected, and the spoke status shows as
Inactive, rejected
.
gcloud
To reject a proposed spoke from connecting to a hub, run the
gcloud network-connectivity hubs reject-spoke
command.gcloud network-connectivity hubs reject-spoke HUB_NAME \ --spoke=SPOKE_URI \ --details=REJECT_REASON
Replace the following:
HUB_NAME
: the name of the hub that contains the spoke that you want to rejectSPOKE_URI
: the URI of the VPC spoke that you want to rejectREJECT_REASON
: Optional: the reason for which you rejected the spoke
To reject proposed updates to an existing spoke, follow these steps:
Follow the Google Cloud CLI instructions to list spokes and record the spoke's
etag
value from the output.Run the
gcloud network-connectivity hubs reject-spoke-update
command.gcloud network-connectivity hubs reject-spoke-update HUB_NAME \ --spoke=SPOKE_URI \ --spoke-etag=ETAG \ --details=REJECT_REASON
Replace the following:
HUB_NAME
: the name of the hub that contains the spoke for which you want to reject updatesSPOKE_URI
: the URI of the VPC spoke for which you want to reject updatesETAG
: theetag
value of the VPC spoke for which you want to reject updatesREJECT_REASON
: Optional: the reason for which you rejected the spoke
API
To reject a proposed spoke, use the
networkconnectivity.hubs.rejectSpoke
method.POST https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/global/hubs/HUB_NAME:rejectSpoke { "spokeUri": SPOKE_URI, "requestId": REQUEST_ID, "details": SPOKE_DETAILS }
Replace the following:
PROJECT_ID
: the ID of the project that contains the hubHUB_NAME
: the name of the hub that contains the spoke that you want to rejectSPOKE_URI
: the URI of the spoke that you want to reject from the hubREQUEST_ID
: Optional: the request ID to identify requestsSPOKE_DETAILS
: Optional: the additional details that you provide, such as, reason for rejection
To reject proposed updates to an existing spoke, follow these steps:
Follow the API instructions to list spokes and record the spoke's
etag
value from the output.Use the
networkconnectivity.hubs.rejectSpokeUpdate
method.POST https://networkconnectivity.googleapis.com/v1/projects/PROJECT_ID/locations/global/hubs/HUB_NAME:rejectSpokeUpdate { "spokeUri": SPOKE_URI, "spokeEtag": ETAG, "requestId": REQUEST_ID, "details": SPOKE_DETAILS }
Replace the following:
PROJECT_ID
: the ID of the project that contains the hubHUB_NAME
: the name of the hub that contains the spoke for which you want to reject updatesSPOKE_URI
: the URI of the spoke for which you want to reject updatesETAG
: theetag
value of the VPC spoke for which you want to reject updatesREQUEST_ID
: Optional: the request ID to identify requestsSPOKE_DETAILS
: Optional: the additional details that you provide, such as, reason for rejection
Manage auto-accept projects for spoke groups
To automatically connect spokes to a hub without the need for individual spoke proposal review, you can set up auto-accept for spoke groups. To complete this task, you need the project IDs for which you want to set up automatic acceptance of spokes.
To add or remove auto-accept projects for spoke groups, follow these steps.
Console
In the Google Cloud console, go to Network Connectivity Center.
In the project menu, select the project that contains the hub for which you want to list the existing spokes.
In the Hub tab, select the hub.
In the Groups tab, click Edit next to the group name that you want to update.
On the Edit group page, under Auto-accept projects, follow these steps for the action you want to take:
To add auto-accept for specific projects, enter the project ID for the appropriate project in the Project ID 1 field. To add multiple project IDs, click Add project ID and enter the project ID.
To remove project IDs from the list, click
Delete next to the project ID that you want to remove.
Click Save.
The Network Connectivity Center Hub details page updates to show details about the auto-accept projects that you added, edited, or removed.
gcloud
To set up auto-accept for spoke groups, run the
gcloud network-connectivity hubs groups update
command.gcloud network-connectivity hubs groups update GROUP_NAME \ --hub=HUB_NAME \ --description=DESCRIPTION \ --add-auto-accept-projects=PROJECT_ID_1,PROJECT_ID_2
Replace the following:
GROUP_NAME
: the name of the group that you want to set up auto-accept forHUB_NAME
: the name of the hub that contains the spoke that you want to acceptDESCRIPTION
: Optional: a description of the spoke groupPROJECT_ID
: a comma-separated list of project IDs for which auto-accept is to be enabled. Use*
to represent all projects.
To clear auto-accept for a hub entirely, run the
gcloud network-connectivity hubs groups update
command with the--clear-auto-accept-projects
flag.gcloud network-connectivity hubs groups update GROUP_NAME \ --hub=HUB_NAME \ --description=DESCRIPTION \ --clear-auto-accept-projects
Replace the following:
GROUP_NAME
: the name of the group that you want to updateHUB_NAME
: the name of the hub that contains the spoke that you want to updateDESCRIPTION
: Optional: a description of the spoke group
To remove auto-accept for specific projects, run the
gcloud network-connectivity hubs groups update
command with the--remove-auto-accept-projects
flag.gcloud network-connectivity hubs groups update GROUP_NAME \ --hub=HUB_NAME \ --description=DESCRIPTION \ --remove-auto-accept-projects=PROJECT_ID_1,PROJECT_ID_2
Replace the following:
GROUP_NAME
: the name of the group that you want to updateHUB_NAME
: the name of the hub that contains the spoke that you want to rejectDESCRIPTION
: Optional: a description of the hubPROJECT_ID
: a comma-separated list of project IDs that you want to remove from the auto-accept list.
API
To update the auto-accept projects list, use the
networkconnectivity.hubs.rejectSpoke
method.
PATCH https://networkconnectivity.googleapis.com/v1/projects/test-project/locations/global/hubs/HUB_NAME/groups/center?updateMask=auto_accept.auto_accept_projects { "auto_accept": { "auto_accept_projects": ["PROJECT_ID_1", "PROJECT_ID_2"], } }
Replace the following:
HUB_NAME
: the name of the hub that contains the spoke that you want to rejectPROJECT_ID
: a comma-separated list of project IDs that you want to remove from the auto-accept list.
What's next
- To create hubs and spokes, see Work with hubs and spokes.
- To view a list of partners whose solutions are integrated with Network Connectivity Center, see Network Connectivity Center partners.
- To find solutions for Router appliance issues, see Troubleshooting.
- To get details about API and
gcloud
commands, see APIs and reference.