### Configure ConoHa VPS Provider Source: https://registry.terraform.io/providers/gmo-internet/conohavps/latest/docs This snippet shows how to configure the ConoHa VPS provider in your Terraform configuration. Ensure you replace placeholder values with your actual credentials and endpoint. ```terraform terraform { required_providers { conohavps = { source = "gmo-internet/conohavps" } } } # Configure the ConoHa VPS provider provider "conohavps" { identity_endpoint = "Your identity endpoint" password = "Your password" region = "Your region" tenant_id = "Your tenant ID" user_id = "Your user ID" } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.