Skip to content

Commit

Permalink
test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
manicminer committed Mar 4, 2021
1 parent 27fe6c3 commit 4a1d77e
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 14 deletions.
1 change: 1 addition & 0 deletions .teamcity/components/generated/services.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// to re-generate this file, run 'make generate' in the root of the repository
var services = mapOf(
"apimanagement" to "API Management",
"domainservices" to "AadMgmt",
"advisor" to "Advisor",
"analysisservices" to "Analysis Services",
"appconfiguration" to "App Configuration",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ package domainservices
import (
"fmt"

"github.com/terraform-providers/terraform-provider-azurerm/azurerm/internal/timeouts"

"github.com/Azure/azure-sdk-for-go/services/domainservices/mgmt/2020-01-01/aad"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
Expand Down Expand Up @@ -237,7 +239,8 @@ func dataSourceArmActiveDirectoryDomainService() *schema.Resource {

func dataSourceArmActiveDirectoryDomainServiceRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*clients.Client).DomainServices.DomainServicesClient
ctx := meta.(*clients.Client).StopContext
ctx, cancel := timeouts.ForRead(meta.(*clients.Client).StopContext, d)
defer cancel()

name := d.Get("name").(string)
resourceGroup := d.Get("resource_group_name").(string)
Expand Down

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

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

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

1 change: 1 addition & 0 deletions website/allowed-subcategories
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Application Insights
Attestation
Authorization
Automation
Azure Active Directory Management
Azure Stack HCI
Base
Batch
Expand Down

0 comments on commit 4a1d77e

Please sign in to comment.