Skip to content

Commit

Permalink
Updated manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfowl committed Mar 29, 2024
1 parent d863cf2 commit 36bb83b
Show file tree
Hide file tree
Showing 19 changed files with 68 additions and 34 deletions.
6 changes: 4 additions & 2 deletions playground/AWS/AWS.AppHost/aspire-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,14 @@
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
var blobs = storage.AddBlobs("blobs");

builder.AddProject<Projects.AzureStorageEndToEnd_ApiService>("api")
.WithExternalHttpEndpoints()
.WithReference(blobs);

// This project is only added in playground projects to support development/debugging
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,14 @@
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,14 @@
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
var insertionrows = builder.AddParameter("insertionrows");

builder.AddProject<Projects.ParameterEndToEnd_ApiService>("api")
.WithExternalHttpEndpoints()
.WithEnvironment("InsertionRows", insertionrows)
.WithReference(db);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,14 @@
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,12 +187,14 @@
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,14 @@
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
}
}
},
Expand Down
8 changes: 5 additions & 3 deletions playground/bicep/BicepSample.AppHost/aspire-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"test0": {
"type": "azure.bicep.v0",
"path": "../../../../../Users/midenn/AppData/Local/Temp/tmpjkt1f3.tmp.bicep"
"path": "../../../../../../Users/davifowl/AppData/Local/Temp/tmppj1k21.tmp.bicep"
},
"kv3": {
"type": "azure.bicep.v0",
Expand Down Expand Up @@ -176,12 +176,14 @@
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
}
}
}
Expand Down
6 changes: 4 additions & 2 deletions playground/cdk/CdkSample.AppHost/aspire-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -194,12 +194,14 @@
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
}
}
},
Expand Down
6 changes: 4 additions & 2 deletions playground/dapr/AppHost/aspire-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"path": "../ServiceA/DaprServiceA.csproj",
"env": {
"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES": "true",
"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES": "true"
"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES": "true",
"ASPNETCORE_FORWARDEDHEADERS_ENABLED": "true"
},
"bindings": {
"http": {
Expand Down Expand Up @@ -48,7 +49,8 @@
"path": "../ServiceB/DaprServiceB.csproj",
"env": {
"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES": "true",
"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES": "true"
"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES": "true",
"ASPNETCORE_FORWARDEDHEADERS_ENABLED": "true"
},
"bindings": {
"http": {
Expand Down
6 changes: 4 additions & 2 deletions playground/mongo/Mongo.AppHost/aspire-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,14 @@
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
}
}
}
Expand Down
6 changes: 4 additions & 2 deletions playground/mysql/MySqlDb.AppHost/aspire-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,14 @@
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
}
}
},
Expand Down
6 changes: 4 additions & 2 deletions playground/nats/Nats.AppHost/aspire-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion playground/orleans/OrleansAppHost/aspire-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"Orleans__GrainStorage__Default__ProviderType": "AzureBlobStorage",
"Orleans__GrainStorage__Default__ServiceKey": "grainstate",
"ConnectionStrings__grainstate": "{grainstate.connectionString}",
"Orleans__ClusterId": "2c3b607f9b4745e2a082a5e4c520a2a1",
"Orleans__ClusterId": "02348447ebc64775888d944ac74b95ef",
"Orleans__EnableDistributedTracing": "true",
"Orleans__Endpoints__SiloPort": "{silo.bindings.orleans-silo.targetPort}",
"Orleans__Endpoints__GatewayPort": "{silo.bindings.orleans-gateway.targetPort}"
Expand Down
6 changes: 4 additions & 2 deletions playground/seq/Seq.AppHost/aspire-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
}
}
}
Expand Down
6 changes: 4 additions & 2 deletions playground/signalr/SignalRAppHost/aspire-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http"
"transport": "http",
"external": true
}
}
}
Expand Down

0 comments on commit 36bb83b

Please sign in to comment.