Skip to content

Commit

Permalink
feat(azure): Add location to common props (#756)
Browse files Browse the repository at this point in the history
  • Loading branch information
hemalshah-gradientedge authored Mar 5, 2025
1 parent 80ea0ca commit a4a2edc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/azure/common/stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export class CommonAzureStack extends TerraformStack {
domainName: this.node.tryGetContext('domainName'),
extraContexts: this.node.tryGetContext('extraContexts'),
features: this.node.tryGetContext('features'),
location: this.node.tryGetContext('location'),
name: this.node.tryGetContext('resourceGroupName'),
resourceGroupName: this.node.tryGetContext('resourceGroupName'),
skipStageForARecords: this.node.tryGetContext('skipStageForARecords'),
Expand Down
1 change: 1 addition & 0 deletions src/lib/azure/common/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export interface CommonAzureStackProps extends BaseProps, AzurermProviderConfig
resourcePrefix?: string
resourceSuffix?: string
resourceNameOptions?: { [key: string]: AzureResourceNameFormatterProps }
location?: string
}

export interface AzureRemoteBackendProps extends AzurermBackendConfig {
Expand Down

0 comments on commit a4a2edc

Please sign in to comment.