Code Monkey home page Code Monkey logo

terraform-provider-veeam's Introduction

Terraform Veeam Provider

This is the repository for the Terraform Veeam Provider, which one can use with Terraform to work with Veeam server.

For general information about Terraform, visit the official website and the GitHub project page.

Using the Provider

The current version of this provider requires Terraform v0.12.9 or higher to run.

Note that you need to run terraform init to fetch the provider before deploying. Read about the provider split and other changes to TF v0.10.0 in the official release announcement found here.

Full Provider Documentation

The provider is useful to add vm to the backup job

Example

# Configure the Veeam Provider
provider "veeam" {
  server_ip = "${var.VEEAM_SERVER_IP}"
  port = ${var.VEEAM_SERVER_PORT}
  username = "${var.VEEAM_SERVER_USERNAME}"
  password = "${var.VEEAM_SERVER_PASSWORD}"
}

# Resource veeam_job_vm to add vm to the backup job in veeam server
resource  "veeam_job_vm" "addvm"{
    job_name = "${var.VEEAM_JOB_NAME}"
    vm_name = "${var.VEEAM_VM_NAME}"
}

Building The Provider

NOTE: Unless you are [developing][7] or require a pre-release bugfix or feature, you will want to use the officially released version of the provider (see [the section above][8]). [7]: #developing-the-provider [8]: #using-the-provider

Cloning the Project

First, you will want to clone the repository to $GOPATH/src/github.com/terraform-providers/terraform-provider-veeam:

mkdir -p $GOPATH/src/github.com/terraform-providers
cd $GOPATH/src/github.com/terraform-providers
git clone [email protected]:terraform-providers/terraform-provider-veeam

Running the Build

After the clone has been completed, you can enter the provider directory and build the provider.

cd $GOPATH/src/github.com/terraform-providers/terraform-provider-veeam
make build

Installing the Local Plugin

After the build is complete, copy the terraform-provider-veeam binary into the same path as your terraform binary, and re-run terraform init.

After this, your project-local .terraform/plugins/ARCH/lock.json (where ARCH matches the architecture of your machine) file should contain a SHA256 sum that matches the local plugin. Run shasum -a 256 on the binary to verify the values match.

Developing the Provider

If you wish to work on the provider, you'll first need Go installed on your machine (version 1.9+ is required). You'll also need to correctly setup a GOPATH, as well as adding $GOPATH/bin to your $PATH.

See [Building the Provider][11] for details on building the provider. [11]: #building-the-provider

Testing the Provider

NOTE: Testing the VEEAM provider is currently a complex operation as it requires having a VEEAM backup Server to test against.

Configuring Environment Variables

Most of the tests in this provider require a comprehensive list of environment variables to run. See the individual *_test.go files in the veeam/ directory for more details. The next section also describes how you can manage a configuration file of the test environment variables.

Running the Acceptance Tests

After this is done, you can run the acceptance tests by running:

$ make testacc

If you want to run against a specific set of tests, run make testacc with the TESTARGS parameter containing the run mask as per below:

make testacc TESTARGS="-run=TestAccAddVMToJob_Basic"

This following example would run all of the acceptance tests matching TestAccAddVMToJob_Basic

terraform-provider-veeam's People

Contributors

fatih-acar avatar kirteeshelke246 avatar vinodborole avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

terraform-provider-veeam's Issues

cannot find package "github.com/GSLabDev/terraform-provider-veeam/veeam"

I am getting below error while building this project.

main.go:6:2: cannot find package "github.com/GSLabDev/terraform-provider-veeam/veeam" in any of:
/src/github.com/terraform-providers/terraform-provider-veeam/src/github.com/terraform-providers/terraform-provider-veeam/vendor/github.com/GSLabDev/terraform-provider-veeam/veeam (vendor tree)
/usr/lib/go-1.18/src/github.com/GSLabDev/terraform-provider-veeam/veeam (from $GOROOT)
/src/github.com/terraform-providers/terraform-provider-veeam/src/github.com/GSLabDev/terraform-provider-veeam/veeam (from $GOPATH)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.