@@ -855,7 +855,7 @@ type Subnet struct {
855
855
// Subnet Name.
856
856
Name string `json:"name"`
857
857
// Skip specifies whether to skip creating subnets. If set to true(default: false) the ID
858
- // has to be specified by the user to a valid Subnet ID.
858
+ // must be specified by the user to a valid Subnet ID.
859
859
// +optional
860
860
Skip bool `json:"skip,omitempty"`
861
861
// Subnet CIDR.
@@ -911,8 +911,8 @@ type VCN struct {
911
911
Name string `json:"name"`
912
912
913
913
// Skip specifies whether to skip creating VCN.
914
- // When is set to true, InternetGateway, NatGateway, ServiceGateway, RouteTable should be also have Skip set to true
915
- // If set to true(default: false) the ID has to be specified by the user to a valid VCN ID.
914
+ // When is set to true, InternetGateway, NatGateway, ServiceGateway, RouteTable must have also Skip set to true
915
+ // If set to true(default: false) the ID must be specified by the user to a valid VCN ID.
916
916
// +optional
917
917
Skip bool `json:"skip,omitempty"`
918
918
@@ -1135,7 +1135,7 @@ type RemotePeeringConnection struct {
1135
1135
// InternetGateway is used to specify the options for creating internet gateway.
1136
1136
type InternetGateway struct {
1137
1137
// Skip specifies whether to skip creating internet gateway even if any one Subnet is public.
1138
- // In case of VCN being Skipped (Skip field of VCN set to true), this field should be true also
1138
+ // In case of VCN being Skipped (Skip field of VCN set to true), this field must be true also
1139
1139
// +optional
1140
1140
Skip bool `json:"skip,omitempty"`
1141
1141
@@ -1147,7 +1147,7 @@ type InternetGateway struct {
1147
1147
// NATGateway is used to specify the options for creating NAT gateway.
1148
1148
type NATGateway struct {
1149
1149
// Skip specifies whether to skip creating NAT gateway even if any one Subnet is private.
1150
- // In case of VCN being Skipped (Skip field of VCN set to true), this field should be true also
1150
+ // In case of VCN being Skipped (Skip field of VCN set to true), this field must be true also
1151
1151
// +optional
1152
1152
Skip bool `json:"skip,omitempty"`
1153
1153
@@ -1159,7 +1159,7 @@ type NATGateway struct {
1159
1159
// ServiceGateway is used to specify the options for creating Service gateway.
1160
1160
type ServiceGateway struct {
1161
1161
// Skip specifies whether to skip creating Service gateway.
1162
- // In case of VCN being Skipped (Skip field of VCN set to true), this field should be true also
1162
+ // In case of VCN being Skipped (Skip field of VCN set to true), this field must be true also
1163
1163
// +optional
1164
1164
Skip bool `json:"skip,omitempty"`
1165
1165
@@ -1171,7 +1171,7 @@ type ServiceGateway struct {
1171
1171
// RouteTable is used to specify the options for creating Route table.
1172
1172
type RouteTable struct {
1173
1173
// Skip specifies whether to skip creating Route table.
1174
- // In case of VCN being Skipped (Skip field of VCN set to true), this field should be true also
1174
+ // In case of VCN being Skipped (Skip field of VCN set to true), this field must be true also
1175
1175
// +optional
1176
1176
Skip bool `json:"skip,omitempty"`
1177
1177
0 commit comments