You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .changelog/26427.txt
+12
Original file line number
Diff line number
Diff line change
@@ -28,4 +28,16 @@ resource/aws_launch_configuration: With the retirement of EC2-Classic the`vpc_cl
28
28
29
29
```release-note:note
30
30
resource/aws_vpc: With the retirement of EC2-Classic the`enable_classiclink` and `enable_classiclink_dns_support` attributes have been deprecated and will be removed in a future version
31
+
```
32
+
33
+
```release-note:note
34
+
resource/aws_vpc_peering_connection: With the retirement of EC2-Classic the`allow_classic_link_to_remote_vpc` and `allow_vpc_to_remote_classic_link` attributes have been deprecated and will be removed in a future version
35
+
```
36
+
37
+
```release-note:note
38
+
resource/aws_vpc_peering_connection_accepter: With the retirement of EC2-Classic the`allow_classic_link_to_remote_vpc` and `allow_vpc_to_remote_classic_link` attributes have been deprecated and will be removed in a future version
39
+
```
40
+
41
+
```release-note:note
42
+
resource/aws_vpc_peering_connection_options: With the retirement of EC2-Classic the`allow_classic_link_to_remote_vpc` and `allow_vpc_to_remote_classic_link` attributes have been deprecated and will be removed in a future version
Copy file name to clipboardexpand all lines: internal/service/ec2/vpc_peering_connection.go
+8-6
Original file line number
Diff line number
Diff line change
@@ -84,19 +84,21 @@ var vpcPeeringConnectionOptionsSchema = &schema.Schema{
84
84
Elem: &schema.Resource{
85
85
Schema: map[string]*schema.Schema{
86
86
"allow_classic_link_to_remote_vpc": {
87
-
Type: schema.TypeBool,
88
-
Optional: true,
89
-
Default: false,
87
+
Type: schema.TypeBool,
88
+
Optional: true,
89
+
Default: false,
90
+
Deprecated: `With the retirement of EC2-Classic the allow_classic_link_to_remote_vpc attribute has been deprecated and will be removed in a future version.`,
90
91
},
91
92
"allow_remote_vpc_dns_resolution": {
92
93
Type: schema.TypeBool,
93
94
Optional: true,
94
95
Default: false,
95
96
},
96
97
"allow_vpc_to_remote_classic_link": {
97
-
Type: schema.TypeBool,
98
-
Optional: true,
99
-
Default: false,
98
+
Type: schema.TypeBool,
99
+
Optional: true,
100
+
Default: false,
101
+
Deprecated: `With the retirement of EC2-Classic the allow_vpc_to_remote_classic_link attribute has been deprecated and will be removed in a future version.`,
0 commit comments