File tree 2 files changed +20
-0
lines changed
templates/terraform/examples
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -485,6 +485,25 @@ properties:
485
485
update_url : ' projects/{{project}}/global/forwardingRules/{{name}}/setTarget'
486
486
update_verb : ' POST'
487
487
diff_suppress_func : ' tpgresource.CompareSelfLinkRelativePaths'
488
+ - name : ' networkTier'
489
+ type : Enum
490
+ description : |
491
+ This signifies the networking tier used for configuring
492
+ this load balancer and can only take the following values:
493
+ `PREMIUM`, `STANDARD`.
494
+
495
+ For regional ForwardingRule, the valid values are `PREMIUM` and
496
+ `STANDARD`. For GlobalForwardingRule, the valid value is
497
+ `PREMIUM`.
498
+
499
+ If this field is not specified, it is assumed to be `PREMIUM`.
500
+ If `IPAddress` is specified, this value must be equal to the
501
+ networkTier of the Address.
502
+ immutable : true
503
+ default_from_api : true
504
+ enum_values :
505
+ - ' PREMIUM'
506
+ - ' STANDARD'
488
507
- name : ' serviceDirectoryRegistrations'
489
508
type : Array
490
509
description : |
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ resource "google_compute_global_forwarding_rule" "default" {
3
3
target = google_compute_target_http_proxy.default.id
4
4
port_range = "80"
5
5
load_balancing_scheme = "EXTERNAL_MANAGED"
6
+ network_tier = "PREMIUM"
6
7
}
7
8
8
9
resource "google_compute_target_http_proxy" "default" {
You can’t perform that action at this time.
0 commit comments