0

[https://cloud.google.com/network-connectivity/docs/interconnect/how-to/dedicated/modifying-vlan-attachments#console]

Docs indicate you can increase VLAN attachment bandwidth in the console but that option is not available to me. There is no capacity field as you can hopefully see in the included image.

Missing capacity field

1 Answers1

1

You can do it (Capacity: The maximum bandwidth of the attachment) by using gcloud command:

gcloud compute interconnects attachments dedicated update NAME \
    --region=REGION \
    --description=DESCRIPTION \
    --bandwidth=BANDWIDTH \
    --mtu MTU
Mahboob
  • 1,877
  • 5
  • 19
  • Thanks for your answer. I'm just now going to implement this but I need it for a partner attachment and the bandwidth flag is not present although it is for a dedicated vlan attachment. It doesn't appear to be available under the alpha/beta command set either. – josh bernardini Mar 16 '21 at 19:55