Skip to content

Commit

Permalink
Merge pull request #7 from oracle-quickstart/renamevar
Browse files Browse the repository at this point in the history
Renamed var 'sysdig_node_analyzer_api_endpoint'
  • Loading branch information
junior authored May 31, 2022
2 parents 3adfcb7 + a2bc9b2 commit 9c28c55
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions terraform/schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ variableGroups:
- sysdig_access_key
- sysdig_settings_collector
- sysdig_settings_collector_port
- sysdig_node_analyzer_api_endpoint
- sysdig_secure_api_endpoint

- title: "Sysdig <> Snyk Integration"
variables:
Expand Down Expand Up @@ -124,9 +124,9 @@ variables:
title: "Sysdig Agent Collector Port"
required: true

sysdig_node_analyzer_api_endpoint:
sysdig_secure_api_endpoint:
type: string
title: "Sysdig Node Analyzer API endpoint"
title: "Sysdig Secure Endpoint for node analyzer"
required: true

sysdig_snyk_integration:
Expand Down
2 changes: 1 addition & 1 deletion terraform/sysdig-agent.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ resource "helm_release" "sysdig_agent" {
}
set {
name = "nodeAnalyzer.apiEndpoint"
value = var.sysdig_node_analyzer_api_endpoint
value = var.sysdig_secure_api_endpoint
}
set {
name = "ebpf.enabled"
Expand Down
2 changes: 1 addition & 1 deletion terraform/sysdig-variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ variable "sysdig_settings_collector_port" {
description = "Sysdig Agent Collector Port"
}

variable "sysdig_node_analyzer_api_endpoint" {
variable "sysdig_secure_api_endpoint" {
default = ""
description = "Sysdig secure API endpoint, without protocol (i.e. secure.sysdig.com)"
}
Expand Down

0 comments on commit 9c28c55

Please sign in to comment.