Extend Terraform Addon
Terraform Controller is the core controller to provision and manage cloud resources for KubeVela. It has supported some cloud providers, including AWS, Azure, GCP, Alibaba Cloud, Tencent Cloud, etc. But only a few has been supported as Terraform Addons in KubeVela.
This guide will show you how to extend a Terraform Addon to support your cloud provider.
If the cloud provider you want to support is none of supported cloud providers in Terraform Controller, you have to support it first. If it has been supported by Terraform Controller, you can continue to extend the addon.
- Clone oam-dev/catalog
$ git clone https://github.com/kubevela/catalog.git
- Prepare a metadata file
Edit the metadata file hack/addons/terraform/terraform-provider-scaffold/metadata.yaml for your cloud provider.
...# -------------------------------------Configuration Metadata for a Terraform Addon-------------------------------------# provider short nameshortCloudName: tencent# The Cloud name of the providercompleteCloudName: Tencent Cloud# When enabling a Terraform provider, these properties need to set for authentication. For Tencent Cloud,# name: Environment variable name when authenticating Terraform, like https://github.com/oam-dev/terraform-controller/blob/master/controllers/provider/credentials.go#L59# secretKey: Secret key when storing authentication information in a Kubernetes, like https://github.com/oam-dev/terraform-controller/blob/master/controllers/provider/credentials.go#L109.cloudProperties:- name: TENCENTCLOUD_SECRET_IDsecretKey: secretIDdescription: Get TENCENTCLOUD_SECRET_ID per this guide https://cloud.tencent.com/document/product/1213/67093- name: TENCENTCLOUD_SECRET_KEYsecretKey: secretKeydescription: Get TENCENTCLOUD_SECRET_KEY per this guide https://cloud.tencent.com/document/product/1213/67093# If one property is region, please set `isRegion` to true- name: TENCENTCLOUD_REGIONdescription: Get TENCENTCLOUD_REGION by picking one RegionId from Tencent Cloud region list https://cloud.tencent.com/document/api/1140/40509#.E5.9C.B0.E5.9F.9F.E5.88.97.E8.A1.A8isRegion: true
Generate a Terraform Addon for your cloud provider. The generated addon code will be stored in addons/terraform-tencent.
$ make terraform-addon-gengo run hack/addons/terraform/gen.go hack/addons/terraform/provider-sample.yamlGenerating addon for provider tencent in addons/terraform-tencentRendering hack/addons/terraform/terraform-provider-skaffold/metadata.yamlRendering hack/addons/terraform/terraform-provider-skaffold/readme.mdRendering hack/addons/terraform/terraform-provider-skaffold/resources/account-creds.cueRendering hack/addons/terraform/terraform-provider-skaffold/resources/parameter.cueRendering hack/addons/terraform/terraform-provider-skaffold/resources/provider.cueRendering hack/addons/terraform/terraform-provider-skaffold/template.yaml$ ls addons/terraform-tencentdefinitions metadata.yaml readme.md resources template.yaml
Enable the addon Check whether a Provider is created whose name is the same as your cloud provider.
$ vela addon enable ./addons/terraform-tencent TENCENTCLOUD_SECRET_ID=xxx TENCENTCLOUD_SECRET_KEY=yyy TENCENTCLOUD_REGION=ap-chengduI0207 10:15:14.005269 32481 apply.go:106] "patching object" name="addon-terraform-tencent" resource="core.oam.dev/v1beta1, Kind=Application"I0207 10:15:14.138645 32481 apply.go:106] "patching object" name="addon-secret-terraform-tencent" resource="/v1, Kind=Secret"Addon: terraform-tencent enabled Successfully.$ kubectl get providerNAME STATE AGEtencent ready 1d
You are encouraged to further verify the provider by provision a cloud resource of your cloud provider.
Push the code generated in ./addons and make a pull request.
Write Terraform Addon enable doc for your cloud provider and add it to all supported cloud providers.
Last updated on Feb 9, 2023 by dependabot[bot]