You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+4-9
Original file line number
Diff line number
Diff line change
@@ -53,8 +53,8 @@ provider "astronomer" {
53
53
3. Run the following commands to apply the provider:
54
54
```shell
55
55
export ASTRO_API_TOKEN=<token>
56
-
terraform apply
57
56
terraform plan
57
+
terraform apply
58
58
```
59
59
60
60
## Developing the Provider
@@ -63,16 +63,16 @@ If you wish to work on the provider, you'll first need [Go](http://www.golang.or
63
63
64
64
To compile the provider, see [Building The Provider](## Building The Provider).
65
65
66
-
To add example docs, add the correspond `.tf` files to the `examples` directory.
66
+
To add example docs, add the correspond `.tf` files to the `examples` directory. These should be added for every new data source and resource.
67
67
68
68
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:
69
69
70
70
```hcl
71
71
provider_installation {
72
72
dev_overrides {
73
-
"registry.terraform.io/astronomer/astronomer" = "~/astronomer/astronomer-terraform-provider/bin" # Path to the provider binary
73
+
"registry.terraform.io/astronomer/astronomer" = "~/astronomer-terraform-provider/bin" # Your path to the provider binary
0 commit comments