Skip to content

Commit d2f3425

Browse files
authored
Merge pull request #23127 from hashicorp/b-aws_vpn_connection-type
Add undocumented `ipsec.1-aes256` VPN Connection type
2 parents db44c86 + e91af2d commit d2f3425

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changelog/23127.txt

+3
Original file line numberDiff line numberDiff line change
@@ -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

+3-1
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,14 @@ func VpnTunnelOptionsStartupAction_Values() []string {
161161
}
162162

163163
const (
164-
VpnConnectionTypeIpsec1 = "ipsec.1"
164+
VpnConnectionTypeIpsec1 = "ipsec.1"
165+
VpnConnectionTypeIpsec1_AES256 = "ipsec.1-aes256" // https://github.com/hashicorp/terraform-provider-aws/issues/23105.
165166
)
166167

167168
func VpnConnectionType_Values() []string {
168169
return []string{
169170
VpnConnectionTypeIpsec1,
171+
VpnConnectionTypeIpsec1_AES256,
170172
}
171173
}
172174

0 commit comments

Comments
 (0)