@@ -48,7 +48,7 @@ make svc
4848Auth is enabled by default. To temporarily bypass it (e.g., provider dev):
4949
5050``` bash
51- ./opentacosvc -auth-disable -storage memory
51+ ./statesman -auth-disable -storage memory
5252```
5353
5454### Use the CLI
@@ -114,7 +114,7 @@ Configure OIDC so `taco login` works and protected endpoints require login.
114114``` bash
115115export OPENTACO_AUTH_ISSUER=" https://api.workos.com/user_management"
116116export OPENTACO_AUTH_CLIENT_ID=" <WORKOS_CLIENT_ID>"
117- ./opentacosvc -storage memory
117+ ./statesman -storage memory
118118```
119119
1201203 ) Login via CLI (PKCE)
@@ -135,7 +135,7 @@ Auth0 variant:
135135``` bash
136136export OPENTACO_AUTH_ISSUER=" https://<TENANT>.auth0.com" # or <region>.auth0.com
137137export OPENTACO_AUTH_CLIENT_ID=" <AUTH0_NATIVE_APP_CLIENT_ID>"
138- ./opentacosvc -storage memory
138+ ./statesman -storage memory
139139
140140# No flags needed; CLI uses discovery via /v1/auth/config
141141./taco login --server http://localhost:8080
@@ -256,7 +256,7 @@ Steps:
256256OPENTACO_S3_BUCKET=< bucket> \
257257OPENTACO_S3_REGION=< region> \
258258OPENTACO_S3_PREFIX=< prefix> \
259- ./opentacosvc
259+ ./statesman
260260
261261# 2) Scaffold the provider workspace
262262./taco provider init opentaco-config --server http://localhost:8080
@@ -298,7 +298,7 @@ terraform {
298298
299299# ## Components
300300
301- 1. ** Service** (` cmd/opentacosvc /` ) - HTTP server with two surfaces:
301+ 1. ** Service** (` cmd/statesman /` ) - HTTP server with two surfaces:
302302 - Management API (` /v1` ) for CRUD operations on units
303303 - Terraform HTTP backend proxy (` /v1/backend/{id}` ) for Terraform/OpenTofu
304304
@@ -427,7 +427,7 @@ Note: Terraform lock coordination uses the `X-Terraform-Lock-ID` header; the ser
427427` ` `
428428opentaco/
429429├── cmd/
430- │ ├── opentacosvc / # Service binary
430+ │ ├── statesman / # Service binary
431431│ └── taco/ # CLI binary
432432│ └── commands/ # Cobra commands package
433433├── internal/
@@ -497,16 +497,16 @@ make clean
497497OPENTACO_S3_BUCKET=my-bucket \
498498OPENTACO_S3_PREFIX=opentaco \
499499OPENTACO_S3_REGION=us-east-1 \
500- ./opentacosvc
500+ ./statesman
501501
502502# Explicit flags (optional)
503- ./opentacosvc -storage s3 \
503+ ./statesman -storage s3 \
504504 -s3-bucket my-bucket \
505505 -s3-prefix opentaco \
506506 -s3-region us-east-1
507507
508508# Force in-memory storage
509- ./opentacosvc -storage memory
509+ ./statesman -storage memory
510510` ` `
511511
512512# # Troubleshooting
0 commit comments