Skip to content

Commit 7042df6

Browse files
Merge pull request #6 from fingerprintjs/docs/readme-add-fix-versions-and-sources
docs(readme): add rc section and fixed source versions
2 parents 8dde37a + bf92052 commit 7042df6

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

CONTRIBUTING.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,24 @@ To test terraform module using Fingerprint's staging environment, you need to [c
6161
```
6262
- [Use your own custom asset](./README.md#custom-vcl) to deploy your integration
6363

64+
## Using Release Candidates
65+
66+
To use a release candidate version of the module, specify it explicitly in the version field:
67+
68+
```terraform
69+
module "fingerprint_fastly_vcl_integration" {
70+
source = "fingerprintjs/vcl-fingerprint-proxy-integration/fastly"
71+
version = "1.0.0-rc.1"
72+
# Other module inputs
73+
}
74+
```
75+
76+
Alternatively, you can point directly to the GitHub repository and use a branch (e.g., `rc`) via the ref parameter.
77+
This ensures you're always using the latest commit from that branch:
78+
79+
```terraform
80+
module "fingerprint_fastly_vcl_integration" {
81+
source = "github.com/fingerprintjs/terraform-fastly-vcl-fingerprint-proxy-integration?ref=rc"
82+
# Other module inputs
83+
}
84+
```

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ terraform {
5252
}
5353
5454
module "fingerprint_fastly_vcl_integration" {
55-
source = "github.com/fingerprintjs/temp-fastly-vcl-terraform"
55+
source = "fingerprintjs/vcl-fingerprint-proxy-integration/fastly"
5656
fastly_api_token = "FASTLY_API_TOKEN"
5757
proxy_secret = "FINGERPRINT_PROXY_SECRET"
5858
integration_path = "INTEGRATION_PATH"

0 commit comments

Comments
 (0)