We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5bf9a43 + 177f33f commit 62fd562Copy full SHA for 62fd562
.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
@@ -59,12 +59,14 @@ const (
59
)
60
61
const (
62
- VpnConnectionTypeIpsec1 = "ipsec.1"
+ VpnConnectionTypeIpsec1 = "ipsec.1"
63
+ VpnConnectionTypeIpsec1_AES256 = "ipsec.1-aes256" // https://github.com/hashicorp/terraform-provider-aws/issues/23105.
64
65
66
func VpnConnectionType_Values() []string {
67
return []string{
68
VpnConnectionTypeIpsec1,
69
+ VpnConnectionTypeIpsec1_AES256,
70
}
71
72
0 commit comments