Skip to content

Commit

Permalink
Update Terraform-related code in Azure provider
Browse files Browse the repository at this point in the history
  • Loading branch information
Castro, Mario committed Sep 11, 2024
1 parent 285d512 commit 9239fd0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { TerraformCosmosdbDatabase } from './terraform-cosmosdb-database'
import { TerraformApplicationGateway } from './gateway/terraform-application-gateway'
import { TerraformWebPubsub } from './terraform-web-pubsub'
import { ApplicationSynthStack, StackNames } from '../types/application-synth-stack'
import { AzurermProvider } from '@cdktf/provider-azurerm/lib/provider'
import { AzurermProvider, AzurermProviderFeatures } from '@cdktf/provider-azurerm/lib/provider'
import { TerraformOutputs } from './terraform-outputs'
import { TerraformWebPubsubHub } from './terraform-web-pubsub-hub'
import { TerraformWebPubSubExtensionKey } from './terraform-web-pub-sub-extension-key'
Expand Down Expand Up @@ -52,7 +52,7 @@ export class ApplicationSynth {
public constructor(terraformStack: TerraformStack) {
this.config = readProjectConfig(process.cwd())
const azurermProvider = new AzurermProvider(terraformStack, 'azureFeature', {
features: [],
features: [{} as AzurermProviderFeatures],
})
const appPrefix = buildAppPrefix(this.config)
const resourceGroupName = createResourceGroupName(this.config.appName, this.config.environmentName)
Expand Down

0 comments on commit 9239fd0

Please sign in to comment.