File tree Expand file tree Collapse file tree 5 files changed +29
-10
lines changed Expand file tree Collapse file tree 5 files changed +29
-10
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ PROVIDER_NAME=mcbroken
3
3
PROVIDER_FULL_PATH =$(REGISTRY ) /$(NAMESPACE ) /$(PROVIDER_NAME )
4
4
PROVIDER_FULL_NAME =terraform-provider-$(PROVIDER_NAME )
5
5
PROJECT =$(NAMESPACE ) /$(PROVIDER_FULL_NAME )
6
- VERSION =0.1.0
6
+ VERSION =0.1.1
7
7
8
8
build-mac : PLUGIN_DIR = ~/.terraform.d/plugins/local/provider/$(PROVIDER_NAME ) /$(VERSION ) /darwin_amd64
9
9
build-mac :
Original file line number Diff line number Diff line change @@ -17,7 +17,17 @@ Base the count of your infrastucture resources on the national average of broken
17
17
18
18
## Usage
19
19
20
- ``` terraform
20
+ - View the provider on the [ Hashicorp Registry] ( https://registry.terraform.io/providers/circa10a/mcbroken/latest/docs )
21
+
22
+ ``` hcl
23
+ terraform {
24
+ required_providers {
25
+ mcbroken = {
26
+ source = "circa10a/mcbroken"
27
+ }
28
+ }
29
+ }
30
+
21
31
provider "mcbroken" {}
22
32
23
33
// Data source to get all available cities/national average of broken ice cream machines
Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ Base the count of your infrastucture resources on the national average of broken
5
5
## Example Usage
6
6
7
7
``` hcl
8
+ terraform {
9
+ required_providers {
10
+ mcbroken = {
11
+ source = "circa10a/mcbroken"
12
+ }
13
+ }
14
+ }
15
+
8
16
provider "mcbroken" {}
9
17
10
18
// Data resource to get all available cities/national average of broken ice cream machines
Original file line number Diff line number Diff line change
1
+ terraform {
2
+ required_providers {
3
+ mcbroken = {
4
+ source = " local/provider/mcbroken"
5
+ version = " 0.1.1"
6
+ }
7
+ }
8
+ }
9
+
1
10
provider "mcbroken" {}
2
11
3
12
// Data resource to get all available cities/national average of broken ice cream machines
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments