You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting up a new Boundary Stack on AWS, one needs to jump through multiple loops until a full controller/worker setup is present.
In my case I want to do the following (automated, reconciled in FluxCD)
Initial TF stack to create RDS, KMS and IAM
Install Boundary controller + workers
using outputs of TF as input for custom Helm chart
TF stack detects running Boundary controller
configures boundary provider with endpoints available
rolls out configuration
Expected Behavior
until the boundary provider is actually used, it sits there and does nothing.
Actual Behavior
The provider fully initialises itself against the required addr and expects a successful authentication. Error: error performing client request during List call: Get "http://localhost:9200/v1/auth-methods?scope_id=global": dial tcp [::1]:9200: connect: connection refused
Situation
Setting up a new Boundary Stack on AWS, one needs to jump through multiple loops until a full controller/worker setup is present.
In my case I want to do the following (automated, reconciled in FluxCD)
Expected Behavior
until the boundary provider is actually used, it sits there and does nothing.
Actual Behavior
The provider fully initialises itself against the required
addr
and expects a successful authentication.Error: error performing client request during List call: Get "http://localhost:9200/v1/auth-methods?scope_id=global": dial tcp [::1]:9200: connect: connection refused
terraform-provider-boundary/internal/provider/provider.go
Line 297 in 86a99ae
Steps to Reproduce
Just place the boundary provider in any TF stack without any actual resources and get the error above
The
count=0
below should not trigger a full provider initialisation.behaviour of Vault provider
Behaviour of vault provider is different
Allows terraform to plan.
Even setting
count=1
allows to successfully plan and only fail at apply.The text was updated successfully, but these errors were encountered: