File tree Expand file tree Collapse file tree 3 files changed +23
-3
lines changed Expand file tree Collapse file tree 3 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 1
- ## 0.3.0 (Unreleased)
1
+ ## 0.3.0
2
2
3
3
- Improve Logging.
4
+ - Add development script
4
5
5
6
6
7
## 0.2.0 (Unreleased)
Original file line number Diff line number Diff line change 6
6
<img src="https://github.com/Clivern/terraform-provider-lynx/actions/workflows/test.yml/badge.svg"/>
7
7
</a>
8
8
<a href="https://github.com/clivern/terraform-provider-lynx/releases">
9
- <img src="https://img.shields.io/badge/Version-0.2 .0-1abc9c.svg">
9
+ <img src="https://img.shields.io/badge/Version-0.3 .0-1abc9c.svg">
10
10
</a>
11
11
<a href="https://registry.terraform.io/providers/Clivern/lynx/latest">
12
- <img src="https://img.shields.io/badge/Provider-0.2 .0-yellow.svg">
12
+ <img src="https://img.shields.io/badge/Provider-0.3 .0-yellow.svg">
13
13
</a>
14
14
<a href="https://github.com/clivern/terraform-provider-lynx/blob/master/LICENSE">
15
15
<img src="https://img.shields.io/badge/LICENSE-MIT-orange.svg">
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # Define the code to be written to the file
4
+ code=" provider_installation {
5
+
6
+ dev_overrides {
7
+ \" registry.terraform.io/clivern/lynx\" = \" $( go env GOBIN) \"
8
+ }
9
+
10
+ # For all other providers, install them directly from their origin provider
11
+ # registries as normal. If you omit this, Terraform will _only_ use
12
+ # the dev_overrides block, and so no other providers will be available.
13
+ direct {}
14
+ }"
15
+
16
+ # Write the code to the ~/.terraformrc file
17
+ echo " $code " > ~ /.terraformrc
18
+
19
+ go build main.go
You can’t perform that action at this time.
0 commit comments