@@ -53,7 +53,6 @@ terraform {
53
53
54
54
module "fingerprint_fastly_vcl_integration" {
55
55
source = "fingerprintjs/vcl-fingerprint-proxy-integration/fastly"
56
- version = "~> 1.0"
57
56
fastly_api_token = "FASTLY_API_TOKEN"
58
57
proxy_secret = "FINGERPRINT_PROXY_SECRET"
59
58
integration_path = "INTEGRATION_PATH"
@@ -82,32 +81,6 @@ You can see the full list of the Terraform module's variables below:
82
81
| ` asset_version ` | GitHub release version used for the VCL asset | Optional | ` "latest" ` |
83
82
| ` manage_fastly_dictionary_items ` | Manage Fastly Dictionary items via terraform, see [ Fastly documentation] ( https://registry.terraform.io/providers/fastly/fastly/latest/docs/resources/service_dictionary_items#manage_items-1 ) | Optional | ` false ` |
84
83
85
- ### Using Release Candidates (Optional)
86
-
87
- To use a release candidate version of the module, specify it explicitly in the version field:
88
-
89
- ``` terraform
90
- module "fingerprint_fastly_vcl_integration" {
91
- source = "fingerprintjs/vcl-fingerprint-proxy-integration/fastly"
92
- version = "1.0.0-rc.1"
93
- # Other module inputs
94
- }
95
- ```
96
-
97
- Alternatively, you can point directly to the GitHub repository and use a branch (e.g., ` rc ` ) via the ref parameter.
98
- This ensures you're always using the latest commit from that branch:
99
-
100
- ``` terraform
101
- module "fingerprint_fastly_vcl_integration" {
102
- source = "github.com/fingerprintjs/terraform-fastly-vcl-fingerprint-proxy-integration?ref=rc"
103
- # Other module inputs
104
- }
105
- ```
106
-
107
- > [ !WARNING]
108
- > Using a GitHub source with ` ref ` disables version locking and may result in unexpected changes when the branch is updated.
109
- > Recommended for development or testing only.
110
-
111
84
## 2. Deploy your Terraform changes
112
85
113
86
1 . Initialize the Terraform module:
0 commit comments