Skip to main content

A runtime to provide product oriented in DevOps approach

Project description

lemniscat.plugin.terraform

A terraform plugin for lemniscat

Description

This plugin provides a terraform plugin for lemniscat. It allows you to run terraform commands from within lemniscat.

[!NOTE] This plugin allow only for the moment :

  • Azure (with storage account backend)
  • Aws (with s3 backend)

Usage

Pre-requisites

To use this plugin, you need to have terraform installed on your machine. You can install terraform from here. In order to use this plugin, you need to add plugin into the required section of your manifest file.

requirements:
  - name: lemniscat.plugin.terraform
    version: 0.4.0

Run terraform init command with Storage Account Access Key

- task: terraform
  displayName: 'Terraform init'
  steps:
    - pre
  parameters:
    action: init
    tfPath: ${{ tfPath }}
    backend:
      backend_type: azurerm
      storage_account_name: ${{ storage_account_name }}
      container_name: tfstate
      arm_access_key: ${{ arm_access_key }}
      key: terraform.tfstate

Run terraform init command with AWS s3

- task: terraform
  displayName: 'Terraform init'
  steps:
    - pre
  parameters:
    action: init
    tfPath: ${{ tfPath }}
    backend:
      backend_type: awss3
      bucket: ${{ bucket }}
      region: ${{ aws_region }}
      aws_access_key: ${{ aws_access_key }}
      aws_secret_key: ${{ aws_secret_key }}
      key: terraform.tfstate

Run terraform init command with Azure Service Principal

If you want to use Service Principal to get the storage account access key, you can use the following configuration. First you need to create a Service Principal and assign it to the storage account. You can use the following command to create a Service Principal.

az ad sp create-for-rbac --name <ServicePrincipalName> --role contributor --scopes /subscriptions/<subscription_id>/resourceGroups/<resource_group_name>/providers/Microsoft.Storage/storageAccounts/<storage_account_name>

Then store the output in environment variables.

  • ARM_SUBSCRIPTION_ID : The subscription ID that you want to use
  • ARM_CLIENT_ID : The client ID of the service principal
  • ARM_CLIENT_SECRET : The client secret of the service principal
  • ARM_TENANT_ID : The tenant ID of the service principal

Then you can use the following configuration to run terraform init command.

- task: terraform
  displayName: 'Terraform init'
  steps:
    - pre
  parameters:
    action: init
    tfPath: ${{ tfPath }}
    backend:
      backend_type: azurerm
      storage_account_name: ${{ storage_account_name }}
      container_name: tfstate
      key: terraform.tfstate

Run terraform init command with Aws

If you want to use Aws, you can use the following configuration. First you need to create a User and create an access key.

Then store the output in environment variables.

  • AWS_ACCESS_KEY_ID : AWS access key associated with an IAM account
  • AWS_SECRET_ACCESS_KEY : The secret key associated with the access key
  • AWS_DEFAULT_REGION : The AWS Region whose servers you want to send your requests to by default

Then you can use the following configuration to run terraform init command.

- task: terraform
  displayName: 'Terraform init'
  steps:
    - pre
  parameters:
    action: init
    tfPath: ${{ tfPath }}
    backend:
      backend_type: awss3
      bucket: ${{ bucket }}
      region: ${{ region }}
      key: terraform.tfstate

Run terraform plan command

- task: terraform
  displayName: 'Terraform plan'
  steps:
    - pre
  parameters:
    action: plan
    tfPath: ${{ tfPath }}
    tfVarFile: ${{ tfVarsPath }}/vars.tfvars
    tfplanFile: ${{ tfPath }}/terraform.tfplan

Run terraform apply command

- task: terraform
  displayName: 'Terraform apply'
  steps:
    - run
  parameters:
    action: apply
    tfPath: ${{ tfPath }}
    tfplanFile: ${{ tfPath }}/terraform.tfplan

Run terraform destroy command

- task: terraform
  displayName: 'Terraform destroy'
  steps:
    - run
  parameters:
    action: destroy
    tfPath: ${{ tfPath }}
    tfVarFile: ${{ tfVarsPath }}/vars.tfvars

Inputs

Parameters

  • action : The action to be performed. It can be init, plan, apply or destroy.
  • tfPath : The path to the terraform main file.
  • tfVarFile : The path to the terraform variable file.
  • tfplanFile : The path to the terraform plan file.
  • backend : The backend configuration. It contains the following fields.
  • prefixOutput : The prefix to be added to the output of the terraform command. It is optional. For example, if you have a terraform output resource_group_name and you want to add a prefix tf to it, you can set prefixOutput to tf. Then the output will be tf.resource_group_name.

Backend

  • backend_type : The type of the backend. It can be azurerm or awss3 for the moment. Must be provided if tf.backend_type isn't in the lemniscat bag of variables.
  • storage_account_name : The name of the storage account. Only required if backend_type is azurerm. Must be provided if tf.storage_account_name isn't in the lemniscat bag of variables.
  • container_name : The name of the container. Only required if backend_type is azurerm. Must be provided if tf.container_name isn't in the lemniscat bag of variables.
  • arm_access_key : The access key of the storage account. Only required if backend_type is azurerm. Must be provided if tf.arm_access_key isn't in the lemniscat bag of variables or if environment variables ARM_SUBSCRIPTION_ID, ARM_CLIENT_ID, ARM_CLIENT_SECRET and ARM_TENANT_ID are not set.
  • bucket : The name of the bucket. Only required if backend_type is awss3. Must be provided if tf.bucket isn't in the lemniscat bag of variables.
  • region : The region of the bucket. Only required if backend_type is awss3. Must be provided if tf.region isn't in the lemniscat bag of variables.
  • aws_access_key : The access key of the user. Only required if backend_type is awss3. Must be provided if tf.aws_access_key isn't in the lemniscat bag of variables or if environment variable AWS_ACCESS_KEY_ID is not set.
  • aws_secret_key : The secret key of the user. Only required if backend_type is awss3. Must be provided if tf.aws_secret_key isn't in the lemniscat bag of variables or if environment variable AWS_SECRET_ACCESS_KEY is not set.
  • key : The name of the state file. Must be provided if tf.key isn't in the lemniscat bag of variables.

Outputs

You can push variables to the lemniscat runtime in order to be used after by other tasks. All the outpus defined in the terraform output file will be pushed to the lemniscat runtime. The sensitive outputs will be send to the lemniscat runtime as secret.

If you want to add a prefix to the output, you can use the prefixOutput parameter. For example, if you have a terraform output resource_group_name and you want to add a prefix tf to it, you can set prefixOutput to tf. Then the output will be tf.resource_group_name.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lemniscat_plugin_terraform-0.4.1.tar.gz (14.0 kB view hashes)

Uploaded Source

Built Distribution

lemniscat.plugin.terraform-0.4.1-py3-none-any.whl (14.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page