Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
vandyliu committed Apr 3, 2024
1 parent 9e7ee52 commit af214ba
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ website/vendor
examples/main.tf
test_results
vendor/
.terraformrc

# Test exclusions
!command/test-fixtures/**/*.tfstate
Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,18 @@ In order to run the full suite of Acceptance tests, run `make testacc`.

*Note:* Acceptance tests create real resources, and often cost money to run.

To run terraform with the provider, create a `.terraformrc` file in your home directory with the following content to override the provider installation with the local build:

```hcl
provider_installation {
dev_overrides {
"registry.terraform.io/astronomer/astronomer" = "~/astronomer/astronomer-terraform-provider/bin" # Path to the provider binary
}
direct {}
}
```


```shell
make testacc
```

0 comments on commit af214ba

Please sign in to comment.