No description
Find a file
oss-core-libraries-dashboard[bot] 9894118b8f
[COMPLIANCE] Update Copyright and License Headers (#6)
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2026-02-20 15:29:16 +05:30
scada Address review feedback 2016-06-01 18:32:43 -04:00
test Testing provider setup and handshake 2015-02-02 15:46:59 -08:00
.gitignore Initial commit 2015-01-30 11:09:47 -08:00
client.go Expose the number of streams 2015-02-11 17:06:11 -08:00
client_test.go Initial pass 2015-01-30 15:30:31 -08:00
LICENSE [COMPLIANCE] Update Copyright and License Headers (#6) 2026-02-20 15:29:16 +05:30
provider.go Provider closes client during shutdown 2015-08-26 15:24:15 -07:00
provider_test.go Support LogOutput for yamux 2015-02-06 18:50:42 -08:00
README.md README updates 2015-02-17 19:17:25 -08:00
structs.go Support for message flashing 2015-02-04 10:54:41 -08:00

SCADA Client

This library provides a Golang client for the HashiCorp SCADA service. SCADA stands for Supervisory Control And Data Acquisition, and as the name implies it allows Atlas to provide control functions and request data from the tools that integrate.

The technical details about how SCADA works are fairly simple. Clients first open a connection to the SCADA service at scada.hashicorp.com on port 7223. This connection is secured by TLS, allowing clients to verify the identity of the servers and to encrypt all communications. Once connected, a handshake is performed where a client provides it's Atlas API credentials so that Atlas can verify the client identity. Once complete, clients keep the connection open in an idle state waiting for commands to be received. Commands map to APIs exposed by the product, and are subject to any ACLs, authentication or authorization mechanisms of the client.

This library is used in various HashiCorp products to integrate with the SCADA system.

Environmental Variables

This library respects the following environment variables:

  • ATLAS_TOKEN: The Atlas token to use for authentication
  • SCADA_ENDPOINT: Overrides the default SCADA endpoint