feat(vultr): managed databases, compute & load balancer modules#357
Merged
Conversation
…cer modules
Datastores (vultr_database engines), cloned from postgres/vultr:
- datastore/redis/vultr (Valkey; versions 8.1/9.0; eviction_policy + backup window)
- datastore/mysql/vultr (versions 8/8.4; slow_query_log/long_query_time/require_primary_key)
- datastore/kafka/vultr (versions 3.8-4.1; kafka_rest/schema_registry/kafka_connect)
Compute + LB (VM tier, count-scaled):
- compute/vultr (vultr_instance, configurable count, ssh keys, startup script,
managed firewall, VPC attach) -> @facets/vultr-instance-details
- load_balancer/vultr (vultr_load_balancer fronting compute instances; forwarding rules,
health check, ssl_redirect) -> @facets/vultr-load-balancer
Also: postgres/vultr retrofitted with optional VPC attach (network input -> vpc_id).
New output types: @facets/vultr-instance-details, @facets/vultr-load-balancer.
Deploy-tested green on demo CP (VPC-attached): postgres, mysql, redis, compute, load_balancer.
kafka config-validated (passed plan+version; blocked only by account monthly fee limit).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
anshulsao
force-pushed
the
feat/vultr-datastores-compute-lb
branch
from
June 18, 2026 18:58
7f3c540 to
1f85f8f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Extends the Vultr module set (merged in #354) with managed databases, compute, and load balancing.
New modules
datastore/redis/vultrvultr_database(valkey)datastore/mysql/vultrvultr_database(mysql)datastore/kafka/vultrvultr_database(kafka)compute/vultrvultr_instanceload_balancer/vultrvultr_load_balancerOther changes
datastore/postgres/vultr— retrofitted with optional VPC attach (networkinput →vpc_id).@facets/vultr-instance-details,@facets/vultr-load-balancer.Testing
Deploy-tested green on the demo control plane (all VPC-attached):
Plan slugs + engine versions were taken from the live
/v2/databases/plansAPI (Vultr DB plans are engine-specific and account/region-scoped).Notes
clouds: [kubernetes]to match the existing Vultr project-type convention.compute/vultris count-based horizontal scaling (declarative); true autoscaling on Vultr is VKE node-pool only.🤖 Generated with Claude Code