Skip to content

Commit

Permalink
Merge pull request #1185 from jkunder/ipsec_cust_ip_optional
Browse files Browse the repository at this point in the history
Make Customer Endpoint optional in IPSEC tunnel config
  • Loading branch information
jacobbednarz committed Jan 26, 2023
2 parents 088cd6a + fbc791d commit d4e747c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .changelog/1185.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
magic_transit_ipsec_tunnel: makes customer endpoint an optional field for ipsec tunnel creation
```
2 changes: 1 addition & 1 deletion magic_transit_ipsec_tunnel.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ type MagicTransitIPsecTunnel struct {
CreatedOn *time.Time `json:"created_on,omitempty"`
ModifiedOn *time.Time `json:"modified_on,omitempty"`
Name string `json:"name"`
CustomerEndpoint string `json:"customer_endpoint"`
CustomerEndpoint string `json:"customer_endpoint,omitempty"`
CloudflareEndpoint string `json:"cloudflare_endpoint"`
InterfaceAddress string `json:"interface_address"`
Description string `json:"description,omitempty"`
Expand Down

0 comments on commit d4e747c

Please sign in to comment.