We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9d8c95 commit cfe1367Copy full SHA for cfe1367
internal/provider/route_test.go
@@ -50,6 +50,7 @@ func TestConvertRoute(t *testing.T) {
50
EnableGoogleCloudServerlessAuthentication: true,
51
TlsCustomCaKeyPairId: P("custom-ca-1"),
52
KubernetesServiceAccountTokenFile: P("/path/to/token"),
53
+ JwtIssuerFormat: pb.IssuerFormat_IssuerURI,
54
}
55
56
var actual provider.RouteResourceModel
@@ -108,6 +109,7 @@ func TestConvertRoute(t *testing.T) {
108
109
EnableGoogleCloudServerlessAuthentication: types.BoolValue(true),
110
TLSCustomCAKeyPairID: types.StringValue("custom-ca-1"),
111
KubernetesServiceAccountTokenFile: types.StringValue("/path/to/token"),
112
+ JWTIssuerFormat: types.StringValue("IssuerURI"),
113
114
115
if diff := cmp.Diff(expected, actual); diff != "" {
0 commit comments