-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12747 from hashicorp/tgate-san-validate-1.10.x
backport/1.10.x: Use the GatewayService SNI field for upstream SAN validation
- Loading branch information
Showing
9 changed files
with
435 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
```release-note:security | ||
connect: Properly set SNI when configured for services behind a terminating gateway. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
174 changes: 174 additions & 0 deletions
174
agent/xds/testdata/clusters/terminating-gateway-sni.envoy-1-20-x.golden
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
{ | ||
"versionInfo": "00000001", | ||
"resources": [ | ||
{ | ||
"@type": "type.googleapis.com/envoy.config.cluster.v3.Cluster", | ||
"name": "api.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul", | ||
"type": "LOGICAL_DNS", | ||
"connectTimeout": "5s", | ||
"loadAssignment": { | ||
"clusterName": "api.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul", | ||
"endpoints": [ | ||
{ | ||
"lbEndpoints": [ | ||
{ | ||
"endpoint": { | ||
"address": { | ||
"socketAddress": { | ||
"address": "api.altdomain", | ||
"portValue": 8081 | ||
} | ||
} | ||
}, | ||
"healthStatus": "HEALTHY", | ||
"loadBalancingWeight": 1 | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"dnsRefreshRate": "10s", | ||
"dnsLookupFamily": "V4_ONLY", | ||
"outlierDetection": { | ||
|
||
}, | ||
"transportSocket": { | ||
"name": "tls", | ||
"typedConfig": { | ||
"@type": "type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.UpstreamTlsContext", | ||
"commonTlsContext": { | ||
"tlsParams": { | ||
|
||
}, | ||
"tlsCertificates": [ | ||
{ | ||
"certificateChain": { | ||
"filename": "api.cert.pem" | ||
}, | ||
"privateKey": { | ||
"filename": "api.key.pem" | ||
} | ||
} | ||
], | ||
"validationContext": { | ||
"trustedCa": { | ||
"filename": "ca.cert.pem" | ||
}, | ||
"matchSubjectAltNames": [ | ||
{ | ||
"exact": "bar.com" | ||
} | ||
] | ||
} | ||
}, | ||
"sni": "bar.com" | ||
} | ||
} | ||
}, | ||
{ | ||
"@type": "type.googleapis.com/envoy.config.cluster.v3.Cluster", | ||
"name": "cache.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul", | ||
"type": "LOGICAL_DNS", | ||
"connectTimeout": "5s", | ||
"loadAssignment": { | ||
"clusterName": "cache.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul", | ||
"endpoints": [ | ||
{ | ||
"lbEndpoints": [ | ||
{ | ||
"endpoint": { | ||
"address": { | ||
"socketAddress": { | ||
"address": "cache.mydomain", | ||
"portValue": 8081 | ||
} | ||
} | ||
}, | ||
"healthStatus": "HEALTHY", | ||
"loadBalancingWeight": 1 | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"dnsRefreshRate": "10s", | ||
"dnsLookupFamily": "V4_ONLY", | ||
"outlierDetection": { | ||
|
||
} | ||
}, | ||
{ | ||
"@type": "type.googleapis.com/envoy.config.cluster.v3.Cluster", | ||
"name": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul", | ||
"type": "LOGICAL_DNS", | ||
"connectTimeout": "5s", | ||
"loadAssignment": { | ||
"clusterName": "db.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul", | ||
"endpoints": [ | ||
{ | ||
"lbEndpoints": [ | ||
{ | ||
"endpoint": { | ||
"address": { | ||
"socketAddress": { | ||
"address": "db.mydomain", | ||
"portValue": 8081 | ||
} | ||
} | ||
}, | ||
"healthStatus": "UNHEALTHY", | ||
"loadBalancingWeight": 1 | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"dnsRefreshRate": "10s", | ||
"dnsLookupFamily": "V4_ONLY", | ||
"outlierDetection": { | ||
|
||
} | ||
}, | ||
{ | ||
"@type": "type.googleapis.com/envoy.config.cluster.v3.Cluster", | ||
"name": "web.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul", | ||
"type": "EDS", | ||
"edsClusterConfig": { | ||
"edsConfig": { | ||
"ads": { | ||
|
||
}, | ||
"resourceApiVersion": "V3" | ||
} | ||
}, | ||
"connectTimeout": "5s", | ||
"outlierDetection": { | ||
|
||
}, | ||
"transportSocket": { | ||
"name": "tls", | ||
"typedConfig": { | ||
"@type": "type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.UpstreamTlsContext", | ||
"commonTlsContext": { | ||
"tlsParams": { | ||
|
||
}, | ||
"validationContext": { | ||
"trustedCa": { | ||
"filename": "ca.cert.pem" | ||
}, | ||
"matchSubjectAltNames": [ | ||
{ | ||
"exact": "foo.com" | ||
} | ||
] | ||
} | ||
}, | ||
"sni": "foo.com" | ||
} | ||
} | ||
} | ||
], | ||
"typeUrl": "type.googleapis.com/envoy.config.cluster.v3.Cluster", | ||
"nonce": "00000001" | ||
} |
Oops, something went wrong.