terraform-provider-vyos
terraform-provider-vyos copied to clipboard
VyOS Router Provider for Terraform (WIP)
Can you please describe how to create a key for this I suppose some service should be enabled as well ``` provider "vyos" { url = "https://vyos.local" key = "xxxxxxxxx"...
Without this PR the list values are not handled correctly: only the last value is set. As circumvention I have been setting the value in the key: ``` resource "vyos_config_block_tree"...
Some configuration keys, such as `service dhcp-server hostfile-update`, have no values and therefore cannot be managed with the existing resources. The following doesn't work at all: ```hcl resource "vyos_config" "dhcp_service_config"...
It would be a good idea to have automated tests for resource CRUD operations that run against an actual VyOS instance. Perhaps we could create a GitHub actions pipeline that...
From https://github.com/Foltik/vyos-client-go/pull/4: > Where there are many Terraform resources for vyos the refresh can take minutes as the the API calls are serialized. One simple way to address this would...
Since the VyOS API is quite slow, we should try to batch together changes as much as possible. As https://github.com/hashicorp/terraform-plugin-sdk/issues/66 and https://github.com/hashicorp/terraform-plugin-sdk/issues/7 are still unimplemented in the Terraform plugin SDK,...
@Foltik glad to get a chance to do some work on the provider. There are a few things I wanted to ask about first before I work on the resources...
I was wondering if you plan on adding more resources and improve / create a doc? I am looking for the best way to manage vyos config and this is...