Skip to content
This repository was archived by the owner on Mar 3, 2023. It is now read-only.

Commit 15cea74

Browse files
authored
provider - add more linting from azurerm (hashicorp#224)
1 parent 09b5763 commit 15cea74

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+157
-68
lines changed

.github/ISSUE_TEMPLATE/Bug_Report.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ If you are running into one of these scenarios, we recommend opening an issue in
2020

2121
### Community Note
2222

23-
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
24-
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
23+
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritise this request
24+
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritise the request
2525
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
2626

2727
<!--- Thank you for keeping this note for the community --->

.github/ISSUE_TEMPLATE/Feature_Request.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ about: I have a suggestion (and might want to implement myself 🙂)!
88

99
### Community Note
1010

11-
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
12-
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
11+
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritise this request
12+
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritise the request
1313
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
1414

1515
<!--- Thank you for keeping this note for the community --->

.golangci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,6 @@ linters-settings:
3535
errcheck:
3636
ignore: github.com/hashicorp/terraform-plugin-sdk/helper/schema:ForceNew|Set,fmt:.*,io:Close
3737
misspell:
38-
locale: UK
38+
locale: UK
39+
goimports:
40+
local-prefixes: github.com/terraform-providers/terraform-provider-azuread/azuread

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ matrix:
3434
script: make tflint
3535
- name: "make test"
3636
script: make test
37+
- name: "make depscheck"
38+
script: make depscheck
3739
- name: "make website-lint"
3840
script: make website-lint
3941
- name: "make website-test"

GNUmakefile

+52-26
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,30 @@ TEST?=$$(go list ./... |grep -v 'vendor')
22
WEBSITE_REPO=github.com/hashicorp/terraform-website
33
PKG_NAME=azuread
44

5-
#make sure we catch schema errors during testing
6-
TF_SCHEMA_PANIC_ON_ERROR=1
7-
GO111MODULE=on
8-
GOFLAGS=-mod=vendor
5+
6+
.EXPORT_ALL_VARIABLES:
7+
TF_SCHEMA_PANIC_ON_ERROR=1
8+
GO111MODULE=on
9+
GOFLAGS=-mod=vendor
910

1011
default: build
1112

1213
tools:
1314
@echo "==> installing required tooling..."
1415
@sh "$(CURDIR)/scripts/gogetcookie.sh"
15-
GO111MODULE=off go get -u github.com/client9/misspell/cmd/misspell
1616
GO111MODULE=off go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
17-
GO111MODULE=off go get -u github.com/bflad/tfproviderlint/cmd/tfproviderlint
17+
GO111MODULE=off go get -u github.com/client9/misspell/cmd/misspell
18+
GO111MODULE=off go get -u github.com/bflad/tfproviderlint/cmd/tfproviderlintx
19+
GO111MODULE=off go get -u github.com/bflad/tfproviderdocs
20+
GO111MODULE=off go get -u github.com/katbyte/terrafmt
1821

1922
build: fmtcheck
2023
go install
2124

22-
test: fmtcheck
23-
go test -i $(TEST) || exit 1
24-
echo $(TEST) | \
25-
xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4
26-
27-
testacc: fmtcheck
28-
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 180m -ldflags="-X=github.com/terraform-providers/terraform-provider-azuread/version.ProviderVersion=acc"
29-
30-
debugacc: fmtcheck
31-
TF_ACC=1 dlv test $(TEST) --headless --listen=:2345 --api-version=2 -- -test.v $(TESTARGS)
32-
3325
fmt:
3426
@echo "==> Fixing source code with gofmt..."
35-
gofmt -s -w ./$(PKG_NAME)
27+
# This logic should match the search logic in scripts/gofmtcheck.sh
28+
find . -name '*.go' | grep -v vendor | xargs gofmt -s -w
3629

3730
# Currently required by tf-deploy compile
3831
fmtcheck:
@@ -48,10 +41,41 @@ lint:
4841

4942
tflint:
5043
@echo "==> Checking source code against terraform provider linters..."
51-
@tfproviderlint \
52-
-R001 -R002 -R003 -R004\
53-
-S001 -S002 -S003 -S004 -S005 -S006 -S007 -S008 -S009 -S010 -S011 -S012 -S013 -S014 -S015 -S016 -S017 -S018 -S019\
54-
./$(PKG_NAME)
44+
@tfproviderlintx \
45+
-AT005 -AT006 -AT007 -AT007\
46+
-R001 -R002 -R003 -R004 -R006 -R007 -R008 -R010 -R012 -R013 -R014\
47+
-S001 -S002 -S003 -S004 -S005 -S006 -S007 -S008 -S009 -S010 -S011 -S012 -S013 -S014 -S015 -S016 -S017 -S018 -S019 -S020\
48+
-S021 -S022 -S023 -S024 -S025 -S026 -S027 -S028 -S029 -S030 -S031 -S032 -S033 -S034\
49+
-V002 -V003 -V004 -V005 -V006 -V007\
50+
-XR002\
51+
./$(PKG_NAME)/...
52+
@sh -c "'$(CURDIR)/scripts/terrafmt-acctests.sh'"
53+
54+
whitespace:
55+
@echo "==> Fixing source code with whitespace linter..."
56+
golangci-lint run ./... --no-config --disable-all --enable=whitespace --fix
57+
58+
depscheck:
59+
@echo "==> Checking source code with go mod tidy..."
60+
@go mod tidy
61+
@git diff --exit-code -- go.mod go.sum || \
62+
(echo; echo "Unexpected difference in go.mod/go.sum files. Run 'go mod tidy' command or revert any go.mod/go.sum changes and commit."; exit 1)
63+
@echo "==> Checking source code with go mod vendor..."
64+
@go mod vendor
65+
@git diff --compact-summary --exit-code -- vendor || \
66+
(echo; echo "Unexpected difference in vendor/ directory. Run 'go mod vendor' command or revert any go.mod/go.sum/vendor changes and commit."; exit 1)
67+
68+
69+
test: fmtcheck
70+
go test -i $(TEST) || exit 1
71+
echo $(TEST) | \
72+
xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4
73+
74+
testacc: fmtcheck
75+
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 180m -ldflags="-X=github.com/terraform-providers/terraform-provider-azuread/version.ProviderVersion=acc"
76+
77+
debugacc: fmtcheck
78+
TF_ACC=1 dlv test $(TEST) --headless --listen=:2345 --api-version=2 -- -test.v $(TESTARGS)
5579

5680
test-compile:
5781
@if [ "$(TEST)" = "./..." ]; then \
@@ -61,11 +85,13 @@ test-compile:
6185
fi
6286
go test -c $(TEST) $(TESTARGS)
6387

64-
6588
website-lint:
66-
@echo "==> Checking website against linters..."
67-
@misspell -error -source=text -i hdinsight website/
68-
89+
@echo "==> Checking documentation spelling..."
90+
@misspell -error -source=text -i hdinsight -locale UK website/
91+
@echo "==> Checking documentation for errors..."
92+
@tfproviderdocs check -provider-name=azuread -require-resource-subcategory \
93+
-allowed-resource-subcategories-file website/allowed-subcategories
94+
@sh -c "'$(CURDIR)/scripts/terrafmt-website.sh'"
6995

7096
website:
7197
ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))

azuread/data_application_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66

77
"github.com/hashicorp/terraform-plugin-sdk/helper/acctest"
88
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
9+
910
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/tf"
1011
)
1112

azuread/data_group.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55

66
"github.com/Azure/azure-sdk-for-go/services/graphrbac/1.6/graphrbac"
77
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
8-
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/graph"
98

109
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
10+
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/graph"
1111
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/validate"
1212
)
1313

azuread/data_group_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66

77
"github.com/hashicorp/terraform-plugin-sdk/helper/acctest"
88
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
9+
910
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/tf"
1011
)
1112

azuread/data_groups.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88

99
"github.com/Azure/azure-sdk-for-go/services/graphrbac/1.6/graphrbac"
1010
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
11-
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/graph"
1211

12+
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/graph"
1313
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/validate"
1414
)
1515

azuread/data_groups_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55
"testing"
66

77
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
8+
89
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/tf"
910
)
1011

azuread/helpers/graph/credentials.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
1212
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
1313
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
14-
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
1514

15+
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
1616
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/p"
1717
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/validate"
1818
)

azuread/resource_application.go

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"github.com/google/uuid"
1010
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
1111
"github.com/hashicorp/terraform-plugin-sdk/helper/validation"
12+
1213
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
1314
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/graph"
1415
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/p"

azuread/resource_application_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"github.com/hashicorp/terraform-plugin-sdk/helper/acctest"
99
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
1010
"github.com/hashicorp/terraform-plugin-sdk/terraform"
11-
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/tf"
1211

1312
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
13+
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/tf"
1414
)
1515

1616
func TestAccAzureADApplication_basic(t *testing.T) {

azuread/resource_group.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ import (
44
"fmt"
55
"log"
66

7-
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/slices"
8-
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/tf"
9-
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/validate"
10-
117
"github.com/Azure/azure-sdk-for-go/services/graphrbac/1.6/graphrbac"
128
"github.com/google/uuid"
139
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
@@ -16,6 +12,9 @@ import (
1612
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
1713
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/graph"
1814
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/p"
15+
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/slices"
16+
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/tf"
17+
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/validate"
1918
)
2019

2120
func resourceGroup() *schema.Resource {

azuread/resource_group_member.go

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"fmt"
55

66
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
7+
78
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
89
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/graph"
910
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/tf"

azuread/resource_group_member_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"github.com/hashicorp/terraform-plugin-sdk/helper/acctest"
88
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
99
"github.com/hashicorp/terraform-plugin-sdk/terraform"
10+
1011
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
1112
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/graph"
1213
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/tf"

azuread/resource_group_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"github.com/hashicorp/terraform-plugin-sdk/helper/acctest"
88
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
99
"github.com/hashicorp/terraform-plugin-sdk/terraform"
10-
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/tf"
1110

1211
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/ar"
12+
"github.com/terraform-providers/terraform-provider-azuread/azuread/helpers/tf"
1313
)
1414

1515
func TestAccAzureADGroup_basic(t *testing.T) {

go.sum

-6
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,13 @@ cloud.google.com/go v0.45.1 h1:lRi0CHyU+ytlvylOlFKKq0af6JncuyoRh1J+QJBqQx0=
77
cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc=
88
cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o=
99
cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE=
10-
github.com/Azure/azure-sdk-for-go v32.5.0+incompatible h1:Hn/DsObfmw0M7dMGS/c0MlVrJuGFzHzOpBWL89acR68=
11-
github.com/Azure/azure-sdk-for-go v32.5.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc=
1210
github.com/Azure/azure-sdk-for-go v35.0.0+incompatible h1:PkmdmQUmeSdQQ5258f4SyCf2Zcz0w67qztEg37cOR7U=
1311
github.com/Azure/azure-sdk-for-go v35.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc=
1412
github.com/Azure/go-autorest/autorest v0.9.0 h1:MRvx8gncNaXJqOoLmhNjUAKh33JJF8LyxPhomEtOsjs=
1513
github.com/Azure/go-autorest/autorest v0.9.0/go.mod h1:xyHB1BMZT0cuDHU7I0+g046+BFDTQ8rEZB0s4Yfa6bI=
1614
github.com/Azure/go-autorest/autorest v0.9.2 h1:6AWuh3uWrsZJcNoCHrCF/+g4aKPCU39kaMO6/qrnK/4=
1715
github.com/Azure/go-autorest/autorest v0.9.2/go.mod h1:xyHB1BMZT0cuDHU7I0+g046+BFDTQ8rEZB0s4Yfa6bI=
1816
github.com/Azure/go-autorest/autorest/adal v0.5.0/go.mod h1:8Z9fGy2MpX0PvDjB1pEgQTmVqjGhiHBW7RJJEciWzS0=
19-
github.com/Azure/go-autorest/autorest/adal v0.6.0 h1:UCTq22yE3RPgbU/8u4scfnnzuCW6pwQ9n+uBtV78ouo=
20-
github.com/Azure/go-autorest/autorest/adal v0.6.0/go.mod h1:Z6vX6WXXuyieHAXwMj0S6HY6e6wcHn37qQMBQlvY3lc=
2117
github.com/Azure/go-autorest/autorest/adal v0.8.1-0.20191028180845-3492b2aff503 h1:Hxqlh1uAA8aGpa1dFhDNhll7U/rkWtG8ZItFvRMr7l0=
2218
github.com/Azure/go-autorest/autorest/adal v0.8.1-0.20191028180845-3492b2aff503/go.mod h1:Z6vX6WXXuyieHAXwMj0S6HY6e6wcHn37qQMBQlvY3lc=
2319
github.com/Azure/go-autorest/autorest/azure/cli v0.2.0 h1:pSwNMF0qotgehbQNllUWwJ4V3vnrLKOzHrwDLEZK904=
@@ -109,8 +105,6 @@ github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5m
109105
github.com/hashicorp/errwrap v0.0.0-20180715044906-d6c0cd880357/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
110106
github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=
111107
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
112-
github.com/hashicorp/go-azure-helpers v0.7.0 h1:wxGpOyWYp15bjBMeL3pXKP5X3oFLZbThAMcJcU6x4FA=
113-
github.com/hashicorp/go-azure-helpers v0.7.0/go.mod h1:3xdjhbL7qs69rnwxA0UENOzkPJjtTFIRb5aRyrEpbCU=
114108
github.com/hashicorp/go-azure-helpers v0.10.0 h1:KhjDnQhCqEMKlt4yH00MCevJQPJ6LkHFdSveXINO6vE=
115109
github.com/hashicorp/go-azure-helpers v0.10.0/go.mod h1:YuAtHxm2v74s+IjQwUG88dHBJPd5jL+cXr5BGVzSKhE=
116110
github.com/hashicorp/go-cleanhttp v0.5.0 h1:wvCrVc9TjDls6+YGAF2hAifE1E5U1+b4tH6KdvN3Gig=

main.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
package main
22

33
import (
4-
"github.com/hashicorp/terraform-plugin-sdk/plugin"
54
"github.com/terraform-providers/terraform-provider-azuread/azuread"
5+
6+
"github.com/hashicorp/terraform-plugin-sdk/plugin"
67
)
78

89
func main() {

scripts/terrafmt-acctests.sh

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#!/usr/bin/env bash
2+
3+
echo "==> Checking acceptance test terraform blocks are formatted..."
4+
5+
files=$(find ./azuread -type f -name "*_test.go")
6+
error=false
7+
8+
for f in $files; do
9+
terrafmt diff -c -q -f "$f" || error=true
10+
done
11+
12+
if ${error}; then
13+
echo "------------------------------------------------"
14+
echo ""
15+
echo "The preceding files contain terraform blocks that are not correctly formatted or contain errors."
16+
echo "You can fix this by running make tools and then terrafmt on them."
17+
echo ""
18+
echo "format a single file:"
19+
echo "$ terrafmt fmt -f ./azuread/resource_user.go"
20+
echo ""
21+
echo "format all website files:"
22+
echo "$ find azurerm | egrep \"_test.go\" | sort | while read f; do terrafmt fmt -f \$f; done"
23+
echo ""
24+
echo "on windows:"
25+
echo "$ Get-ChildItem -Path . -Recurse -Filter \"*_test.go\" | foreach {terrafmt fmt -f $_.fullName}"
26+
echo ""
27+
exit 1
28+
fi
29+
30+
exit 0

scripts/terrafmt-website.sh

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#!/usr/bin/env bash
2+
3+
echo "==> Checking documentation terraform blocks are formatted..."
4+
5+
files=$(find ./website -type f -name "*.html.markdown")
6+
error=false
7+
8+
for f in $files; do
9+
terrafmt diff -c -q "$f" || error=true
10+
done
11+
12+
if ${error}; then
13+
echo "------------------------------------------------"
14+
echo ""
15+
echo "The preceding files contain terraform blocks that are not correctly formatted or contain errors."
16+
echo "You can fix this by running make tools and then terrafmt on them."
17+
echo ""
18+
echo "format a single file:"
19+
echo "$ terrafmt fmt ./website/path/to/file.html.markdown"
20+
echo ""
21+
echo "format all website files:"
22+
echo "$ find . | egrep html.markdown | sort | while read f; do terrafmt fmt \$f; done"
23+
echo ""
24+
echo "on windows:"
25+
echo "$ Get-ChildItem -Path . -Recurse -Filter \"*html.markdown\" | foreach {terrafmt fmt $_.fullName}"
26+
echo ""
27+
exit 1
28+
fi
29+
30+
exit 0

website/allowed-subcategories

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Application
2+
Domains
3+
Groups
4+
Users
5+
Service Principals

website/docs/d/application.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2+
subcategory: "Application"
23
layout: "azuread"
34
page_title: "Azure Active Directory: azuread_application"
4-
sidebar_current: "docs-azuread-datasource-azuread-application"
55
description: |-
66
Gets information about an existing Application within Azure Active Directory.
77
---

0 commit comments

Comments
 (0)