File tree Expand file tree Collapse file tree 13 files changed +163
-68
lines changed
automatic-labelling-folder
automatic-labelling-from-localhost
automatic-labelling-from-repository Expand file tree Collapse file tree 13 files changed +163
-68
lines changed Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17- terraform {
18- required_version = " >= 0.12"
19- }
20-
21- provider "archive" {
22- version = " ~> 1.0"
23- }
24-
25- provider "google" {
26- version = " ~> 3.39"
27- }
28-
29- provider "random" {
30- version = " ~> 2.0"
31- }
32-
33- provider "null" {
34- version = " ~> 2.1"
35- }
36-
3717resource "random_pet" "main" {
3818 length = 2
3919 separator = " -"
Original file line number Diff line number Diff line change 1+ /* *
2+ * Copyright 2021 Google LLC
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
17+ terraform {
18+ required_providers {
19+ archive = {
20+ source = " hashicorp/archive"
21+ version = " ~> 1.0"
22+ }
23+ google = {
24+ source = " hashicorp/google"
25+ version = " ~> 4.0"
26+ }
27+ null = {
28+ source = " hashicorp/null"
29+ version = " ~> 2.1"
30+ }
31+ random = {
32+ source = " hashicorp/random"
33+ version = " ~> 2.0"
34+ }
35+ }
36+ required_version = " >= 0.13"
37+ }
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17- terraform {
18- required_version = " >= 0.12"
19- }
20-
21- provider "archive" {
22- version = " ~> 1.0"
23- }
24-
25- provider "google" {
26- version = " ~> 3.39"
27- }
28-
29- provider "random" {
30- version = " ~> 2.0"
31- }
32-
33- provider "null" {
34- version = " ~> 2.1"
35- }
36-
3717resource "random_pet" "main" {
3818 separator = " -"
3919}
Original file line number Diff line number Diff line change 1+ /* *
2+ * Copyright 2021 Google LLC
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
17+ terraform {
18+ required_providers {
19+ archive = {
20+ source = " hashicorp/archive"
21+ version = " ~> 1.0"
22+ }
23+ google = {
24+ source = " hashicorp/google"
25+ version = " ~> 4.0"
26+ }
27+ null = {
28+ source = " hashicorp/null"
29+ version = " ~> 2.1"
30+ }
31+ random = {
32+ source = " hashicorp/random"
33+ version = " ~> 2.0"
34+ }
35+ }
36+ required_version = " >= 0.13"
37+ }
Original file line number Diff line number Diff line change 1414 * limitations under the License.
1515 */
1616
17- terraform {
18- required_version = " >= 0.12"
19- }
20-
21- provider "archive" {
22- version = " ~> 1.0"
23- }
24-
25- provider "google" {
26- version = " ~> 3.39"
27- }
28-
29- provider "random" {
30- version = " ~> 2.0"
31- }
32-
33- provider "null" {
34- version = " ~> 2.1"
35- }
36-
3717resource "random_pet" "main" {
3818 separator = " -"
3919}
Original file line number Diff line number Diff line change 1+ /* *
2+ * Copyright 2021 Google LLC
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
17+ terraform {
18+ required_providers {
19+ archive = {
20+ source = " hashicorp/archive"
21+ version = " ~> 1.0"
22+ }
23+ google = {
24+ source = " hashicorp/google"
25+ version = " ~> 4.0"
26+ }
27+ null = {
28+ source = " hashicorp/null"
29+ version = " ~> 2.1"
30+ }
31+ random = {
32+ source = " hashicorp/random"
33+ version = " ~> 2.0"
34+ }
35+ }
36+ required_version = " >= 0.13"
37+ }
Original file line number Diff line number Diff line change @@ -19,15 +19,12 @@ terraform {
1919}
2020
2121provider "archive" {
22- version = " ~> 1.0"
2322}
2423
2524provider "google" {
26- version = " ~> 3.39"
2725}
2826
2927provider "random" {
30- version = " ~> 2.0"
3128}
3229
3330resource "random_pet" "main" {
Original file line number Diff line number Diff line change 1+ /* *
2+ * Copyright 2021 Google LLC
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
17+ terraform {
18+ required_providers {
19+ archive = {
20+ source = " hashicorp/archive"
21+ version = " ~> 1.0"
22+ }
23+ google = {
24+ source = " hashicorp/google"
25+ version = " ~> 4.0"
26+ }
27+ random = {
28+ source = " hashicorp/random"
29+ version = " ~> 2.0"
30+ }
31+ }
32+ required_version = " >= 0.13"
33+ }
Original file line number Diff line number Diff line change 1515 */
1616
1717terraform {
18- required_version = " >= 0.12"
18+ required_version = " >= 0.13"
19+ required_providers {
20+ google = {
21+ source = " hashicorp/google"
22+ }
23+ local = {
24+ source = " hashicorp/local"
25+ }
26+ null = {
27+ source = " hashicorp/null"
28+ }
29+ random = {
30+ source = " hashicorp/random"
31+ }
32+ }
1933}
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ terraform {
2020
2121 google = {
2222 source = " hashicorp/google"
23- version = " ~> 3.53"
23+ version = " >= 3.53, < 5.0 "
2424 }
2525 }
2626
You can’t perform that action at this time.
0 commit comments