Skip to content

Commit d0cfc66

Browse files
authored
Promotes custom ranges field to GA (#15943)
1 parent 68b27b4 commit d0cfc66

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

mmv1/products/compute/InterconnectAttachment.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ examples:
6969
interconnect_attachment_name: 'test-custom-ranges-interconnect-attachment'
7070
router_name: 'test-router'
7171
network_name: 'test-network'
72-
min_version: beta
7372
parameters:
7473
- name: 'region'
7574
type: ResourceRef
@@ -367,28 +366,24 @@ properties:
367366
Single IPv4 address + prefix length to be configured on the cloud router interface for this
368367
interconnect attachment. Example: 203.0.113.1/29
369368
immutable: true
370-
min_version: beta
371369
- name: 'candidateCustomerRouterIpAddress'
372370
type: String
373371
description: |
374372
Single IPv4 address + prefix length to be configured on the customer router interface for this
375373
interconnect attachment. Example: 203.0.113.2/29
376374
immutable: true
377-
min_version: beta
378375
- name: 'candidateCloudRouterIpv6Address'
379376
type: String
380377
description: |
381378
Single IPv6 address + prefix length to be configured on the cloud router interface for this
382379
interconnect attachment. Example: 2001:db8::1/125
383380
immutable: true
384-
min_version: beta
385381
- name: 'candidateCustomerRouterIpv6Address'
386382
type: String
387383
description: |
388384
Single IPv6 address + prefix length to be configured on the customer router interface for this
389385
interconnect attachment. Example: 2001:db8::2/125
390386
immutable: true
391-
min_version: beta
392387
- name: 'attachmentGroup'
393388
type: String
394389
description: |

mmv1/templates/terraform/examples/compute_interconnect_attachment_custom_ranges.tf.tmpl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ resource "google_compute_interconnect_attachment" "{{$.PrimaryResourceId}}" {
1010
candidate_customer_router_ip_address = "192.169.0.2/29"
1111
candidate_cloud_router_ipv6_address = "748d:2f23:6651:9455:828b:ca81:6fe0:fed1/125"
1212
candidate_customer_router_ipv6_address = "748d:2f23:6651:9455:828b:ca81:6fe0:fed2/125"
13-
provider = google-beta
1413
}
1514

1615
resource "google_compute_router" "foobar" {
@@ -19,11 +18,9 @@ resource "google_compute_router" "foobar" {
1918
bgp {
2019
asn = 16550
2120
}
22-
provider = google-beta
2321
}
2422

2523
resource "google_compute_network" "foobar" {
2624
name = "{{index $.Vars "network_name"}}"
2725
auto_create_subnetworks = false
28-
provider = google-beta
2926
}

0 commit comments

Comments
 (0)