-
F5OS Terraform provider for F5 VELOS and F5 rSeries helps you automate configurations and interactions with various services provided by F5 VELOS platform and F5 rSeries appliances
-
F5 VELOS platforms are next generation industry-leading chassis-based systems, designed to meet the needs of large enterprise networking environments that require the ability to scale and process a large volume of increasing application workloads.
-
F5 rSeries platforms are powerful systems that are designed specifically for application delivery performance and scalability
For more information:
- Terraform > 1.x
- Go >= 1.19
- GNU Make
- golangci-lint (optional)
This Terraform Provider is available to install automatically via terraform init
. It is recommended to setup the following Terraform configuration to pin the major version:
# Terraform 1.2.x and later
terraform {
required_providers {
f5os = {
source = "f5networks/f5os"
version = "~> X.Y" # where X.Y is the current major version and minor version
}
}
}
Official documentation on how to use this provider can be found on the Terraform Registry. In case of specific questions or discussions, please use the HashiCorp Terraform Providers Discuss forums, in accordance with HashiCorp Community Guidelines.
We also provide:
- Support page for help when using the provider
- Contributing guidelines in case you want to help this project
Compatibility table between this provider, the Terraform Plugin Protocol version it implements, and Terraform:
F5OS Provider | Terraform Plugin Protocol | Terraform | F5OS Velos/rSeries Version |
---|---|---|---|
>= 1.0.0 |
6 |
>= 1.x |
>= 1.5.1/1.4.0 |
Details can be found querying the Registry API that return all the details about which version are currently available for a particular provider.
git clone
this repository andcd
into its directorygo build
will trigger the Golang build
The provided GNUmakefile
defines additional commands generally useful during development,
like for running tests, generating documentation, code formatting and linting.
Taking a look at it's content is recommended.
In order to test the provider, you can run
make test
to run provider unit testsmake testacc
to run provider acceptance tests
It's important to note that acceptance tests (testacc
) will actually spawn real resources, and often cost money to run. Read more about they work on the
official page.
This provider uses terraform-plugin-docs
to generate documentation and store it in the docs/
directory.
Once a release is cut, the Terraform Registry will download the documentation from docs/
and associate it with the release version. Read more about how this works on the
official page.
Use make generate
to ensure the documentation is regenerated with any changes.
If running tests and acceptance tests isn't enough, it's possible to set up a local terraform configuration to use a development builds of the provider. This can be achieved by leveraging the Terraform CLI configuration file development overrides.
First, use make install
to place a fresh development build of the provider in your
${GOBIN}
(defaults to ${GOPATH}/bin
or ${HOME}/go/bin
if ${GOPATH}
is not set). Repeat
this every time you make changes to the provider locally.
Then, setup your environment following these instructions to make your local terraform use your local build.
Note: Acceptance tests create real resources, and often cost money to run.
$ make testacc