Skip to content

Commit 249055a

Browse files
committed
Merge remote-tracking branch 'upstream/master' into pulumi-master
2 parents 39a59f8 + b43867d commit 249055a

File tree

1,422 files changed

+9646
-131348
lines changed

Some content is hidden

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

1,422 files changed

+9646
-131348
lines changed

.circleci/config.yml

Lines changed: 34 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,17 @@ commands:
1414
- "/go/pkg/mod"
1515

1616
jobs:
17-
"docker-go112 build":
17+
"docker-go114 build":
1818
docker:
19-
- image: circleci/golang:1.12
19+
- image: circleci/golang:1.14
2020
steps:
2121
- get_dependencies
2222
- run: go build ./...
23-
"docker-go112 test":
23+
"docker-go114 test":
2424
docker:
25-
- image: circleci/golang:1.12
25+
- image: circleci/golang:1.14
26+
environment:
27+
TF_ACC_TERRAFORM_VERSION: "0.12.26"
2628
parameters:
2729
test_results:
2830
type: string
@@ -40,21 +42,21 @@ jobs:
4042
destination: raw-test-output
4143
- store_test_results:
4244
path: << parameters.test_results >>
43-
"docker-go112 vet":
45+
"docker-go114 vet":
4446
docker:
45-
- image: circleci/golang:1.12
47+
- image: circleci/golang:1.14
4648
steps:
4749
- get_dependencies
4850
- run: go vet ./...
49-
"docker-go112 gofmt":
51+
"docker-go114 gofmt":
5052
docker:
51-
- image: circleci/golang:1.12
53+
- image: circleci/golang:1.14
5254
steps:
5355
- get_dependencies
5456
- run: ./scripts/gofmtcheck.sh
55-
"docker-go112 release":
57+
"docker-go114 release":
5658
docker:
57-
- image: circleci/golang:1.12
59+
- image: circleci/golang:1.14
5860
steps:
5961
- add_ssh_keys:
6062
fingerprints:
@@ -66,39 +68,41 @@ workflows:
6668
version: 2
6769
pr:
6870
jobs:
69-
- "docker-go112 build"
70-
- "docker-go112 test":
71+
- "docker-go114 build"
72+
- "docker-go114 test":
7173
requires:
72-
- "docker-go112 build"
73-
- "docker-go112 vet":
74+
- "docker-go114 build"
75+
- "docker-go114 vet":
7476
requires:
75-
- "docker-go112 build"
76-
- "docker-go112 gofmt":
77+
- "docker-go114 build"
78+
- "docker-go114 gofmt":
7779
requires:
78-
- "docker-go112 build"
80+
- "docker-go114 build"
7981
release:
8082
jobs:
81-
- "docker-go112 build"
82-
- "docker-go112 test":
83+
- "docker-go114 build"
84+
- "docker-go114 test":
8385
requires:
84-
- "docker-go112 build"
85-
- "docker-go112 vet":
86+
- "docker-go114 build"
87+
- "docker-go114 vet":
8688
requires:
87-
- "docker-go112 build"
88-
- "docker-go112 gofmt":
89+
- "docker-go114 build"
90+
- "docker-go114 gofmt":
8991
requires:
90-
- "docker-go112 build"
92+
- "docker-go114 build"
9193
- trigger-release:
9294
filters:
9395
branches:
94-
only: master
96+
only:
97+
- master
9598
type: approval
96-
- "docker-go112 release":
99+
- "docker-go114 release":
97100
filters:
98101
branches:
99-
only: master
102+
only:
103+
- master
100104
requires:
101105
- trigger-release
102-
- "docker-go112 test"
103-
- "docker-go112 vet"
104-
- "docker-go112 gofmt"
106+
- "docker-go114 test"
107+
- "docker-go114 vet"
108+
- "docker-go114 gofmt"

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@ labels: bug
88
<!---
99
Inspect your go.mod as below to find the version, and paste the result between the ``` marks below.
1010
11-
go mod edit -json | jq '.Require[] | select(.Path=="github.com/hashicorp/terraform-plugin-sdk")'
11+
go mod edit -json | jq '.Require[] | select(.Path=="github.com/hashicorp/terraform-plugin-sdk/v2")'
1212
1313
If you are not running the latest version of the SDK, please try upgrading
1414
because your bug may have already been fixed.
1515
16-
If the command above doesn't yield any results, it means you may not have migrated
17-
to the standalone SDK yet. See https://www.terraform.io/docs/extend/plugin-sdk.html for more.
16+
If the command above doesn't yield any results, it means you may either be using v1 of the SDK or
17+
have not have migrated to the standalone SDK yet. See https://www.terraform.io/docs/extend/plugin-sdk.html
18+
for more.
1819
-->
1920

2021
```

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@ labels: enhancement
88
<!--
99
Inspect your go.mod as below to find the version, and paste the result between the ``` marks below.
1010
11-
go mod edit -json | jq '.Require[] | select(.Path=="github.com/hashicorp/terraform-plugin-sdk")'
11+
go mod edit -json | jq '.Require[] | select(.Path=="github.com/hashicorp/terraform-plugin-sdk/v2")'
1212
1313
If you are not running the latest version of the SDK, please try upgrading
1414
because your feature may have already been implemented.
1515
16-
If the command above doesn't yield any results, it means you may not have migrated
17-
to the standalone SDK yet. See https://www.terraform.io/docs/extend/plugin-sdk.html for more.
16+
If the command above doesn't yield any results, it means you may either be using v1 of the SDK or
17+
have not have migrated to the standalone SDK yet. See https://www.terraform.io/docs/extend/plugin-sdk.html
18+
for more.
1819
-->
1920
```
2021
...

.github/SECURITY.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.12.9
1+
1.14.2

0 commit comments

Comments
 (0)