Skip to content

Commit

Permalink
fix api rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalojaubert committed Nov 17, 2023
1 parent 1892f4a commit a1f35da
Show file tree
Hide file tree
Showing 4 changed files with 159 additions and 76 deletions.
185 changes: 133 additions & 52 deletions common/config/rush/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -69,21 +69,28 @@ export class ApplicationSynth {
this.buildWebPubSub(stack)
stack.apiManagement = TerraformApiManagement.build(stack)
stack.apiManagementApi = TerraformApiManagementApi.build(stack, this.config.environmentName)
stack.graphQLApiManagementApiOperation = TerraformApiManagementApiOperation.build(stack, graphQLApiOperation)
stack.applicationServicePlan = TerraformServicePlan.build(stack, 'psp', 'Y1', 1)
stack.storageAccount = TerraformStorageAccount.build(stack, 'sp')
stack.functionApp = this.buildDefaultFunctionApp(stack, zipFile)
stack.graphQLApiManagementApiOperationPolicy = TerraformApiManagementApiOperationPolicy.build(
stack.graphQLApiManagementApiOperation = TerraformApiManagementApiOperation.build(
stack,
graphQLApiOperation
)
stack.sensorHealthApiManagementApiOperation = TerraformApiManagementApiOperationSensorHealth.build(
stack,
sensorApiOperation
)
stack.applicationServicePlan = TerraformServicePlan.build(stack, 'psp', 'Y1', 1)
stack.storageAccount = TerraformStorageAccount.build(stack, 'sp')
stack.functionApp = this.buildDefaultFunctionApp(stack, zipFile)
stack.graphQLApiManagementApiOperationPolicy = TerraformApiManagementApiOperationPolicy.build(
stack,
stack.graphQLApiManagementApiOperation,
graphQLApiOperation,
'amaop'
)
stack.sensorHealthApiManagementApiOperationPolicy = TerraformApiManagementApiOperationPolicy.build(
stack,
sensorApiOperation
stack.sensorHealthApiManagementApiOperation,
sensorApiOperation,
'amaopsh'
)
this.buildWebPubSubHub(stack)
TerraformOutputs.build(stack)
Expand Down
Loading

0 comments on commit a1f35da

Please sign in to comment.