We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents db44c86 + e91af2d commit d2f3425Copy full SHA for d2f3425
.changelog/23127.txt
@@ -0,0 +1,3 @@
1
+```release-note:bug
2
+resource/aws_vpn_connection: Add support for `ipsec.1-aes256` connection type
3
+```
internal/service/ec2/enum.go
@@ -161,12 +161,14 @@ func VpnTunnelOptionsStartupAction_Values() []string {
161
}
162
163
const (
164
- VpnConnectionTypeIpsec1 = "ipsec.1"
+ VpnConnectionTypeIpsec1 = "ipsec.1"
165
+ VpnConnectionTypeIpsec1_AES256 = "ipsec.1-aes256" // https://github.com/hashicorp/terraform-provider-aws/issues/23105.
166
)
167
168
func VpnConnectionType_Values() []string {
169
return []string{
170
VpnConnectionTypeIpsec1,
171
+ VpnConnectionTypeIpsec1_AES256,
172
173
174
0 commit comments