Skip to content

Commit a72c36e

Browse files
committed
fix: remove unsupported check_license argument from xray provider
The check_license argument is not supported by the JFrog Xray Terraform provider, causing test failures. Removing this argument fixes the Terraform validation.
1 parent caef723 commit a72c36e

File tree

1 file changed

+2
-3
lines changed
  • registry/coder/modules/jfrog-xray

1 file changed

+2
-3
lines changed

registry/coder/modules/jfrog-xray/main.tf

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,8 @@ variable "icon" {
6060

6161
# Configure the Xray provider
6262
provider "xray" {
63-
url = var.xray_url
64-
access_token = var.xray_token
65-
check_license = false
63+
url = var.xray_url
64+
access_token = var.xray_token
6665
}
6766

6867
# Parse image components if repo and repo_path are not provided

0 commit comments

Comments
 (0)