Skip to content

Commit

Permalink
Update README to include more steps to set up local env
Browse files Browse the repository at this point in the history
  • Loading branch information
saayamori committed Jul 24, 2024
1 parent d5b6cbf commit 56979b9
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,31 @@ cd /path/terraform-provider-conformity
go mod tidy
go mod vendor
```
#### 3. Create the Artifact:
#### 3. Update Makefile with your own values:
```makefile
# ...
VERSION=0.6 # Set a new version
OS_ARCH=darwin_amd64 # Update to value that matches with your OS
# ...
```
#### 4. Create the Artifact:
```sh
make install
```
#### 4. Now, you can test terraform code:
#### 5. Go to your terraform project, and update `source` set in your terraform provider block:
```hcl
terraform {
required_providers {
conformity = {
version = "YOUR_VERSION"
# Set path to match with values in HOSTNAME/NAMESPACE/NAME defined in the Makefile
source = "trendmicro.com/cloudone/conformity"
}
}
}
```
#### 6. Now, you can test terraform code:
```sh
cd example/path-to-main/
terraform init
Expand Down

0 comments on commit 56979b9

Please sign in to comment.