Terraform Client for Java developers

Terraform client wrapper for Java developers

License

License

MIT
Categories

Categories

CLI User Interface ORM Data
GroupId

GroupId

com.microsoft.terraform
ArtifactId

ArtifactId

terraform-client
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

Terraform Client for Java developers
Terraform client wrapper for Java developers
Project URL

Project URL

https://github.com/Microsoft/terraform-spring-boot
Project Organization

Project Organization

Microsoft
Source Code Management

Source Code Management

https://github.com/Microsoft/terraform-spring-boot/tree/master

Download terraform-client

How to add to project

<!-- https://jarcasting.com/artifacts/com.microsoft.terraform/terraform-client/ -->
<dependency>
    <groupId>com.microsoft.terraform</groupId>
    <artifactId>terraform-client</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.microsoft.terraform/terraform-client/
implementation 'com.microsoft.terraform:terraform-client:1.0.0'
// https://jarcasting.com/artifacts/com.microsoft.terraform/terraform-client/
implementation ("com.microsoft.terraform:terraform-client:1.0.0")
'com.microsoft.terraform:terraform-client:jar:1.0.0'
<dependency org="com.microsoft.terraform" name="terraform-client" rev="1.0.0">
  <artifact name="terraform-client" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.microsoft.terraform', module='terraform-client', version='1.0.0')
)
libraryDependencies += "com.microsoft.terraform" % "terraform-client" % "1.0.0"
[com.microsoft.terraform/terraform-client "1.0.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

Terraform Spring Boot

Introduction

This repository is for Spring Boot Starters of Terraform client.

How to use it

There are two ways you could use this library. One way is to directly use the TerraformClient class which wraps the terraform executable on your local machine; and the other way is to integrate it into a Spring boot application using annotations.

Client library

Simply add the following dependency to your project's pom.xml will enable you to use the TerraformClient class.

<dependency>
    <groupId>com.microsoft.terraform</groupId>
    <artifactId>terraform-client</artifactId>
    <version>1.0.0</version>
</dependency>

And now you are able to provision terraform resources in your Java application. Make sure you have already put a terraform file storage.tf under /some/local/path/ folder; and then use the Java code snippet below to invoke terraform executable operate on the resources defined in storage.tf. In this example, we also assume that you are provisioning Azure specific resource, which means you need to set some Azure related credentials.

TerraformOptions options = new TerraformOptions();
options.setArmSubscriptionId("<Azure Subscription ID>");
options.setArmClientId("<Azure Client ID>");
options.setArmClientSecret("<Azure Client Secret>");
options.setArmTenantId("<Azure Tenant ID>");

try (TerraformClient client = new TerraformClient(options)) {
    client.setOutputListener(System.out::println);
    client.setErrorListener(System.err::println);

    client.setWorkingDirectory("/some/local/path/");
    client.plan().get();
    client.apply().get();
}

Spring boot

Let's still use the terraform file storage.tf under /some/local/path/ folder to provision Azure resources in this example. Rather than create the TerraformClient by ourselves, we let the spring boot framework to wire it for us. First add the following dependency to your pom.xml:

<dependency>
    <groupId>com.microsoft.terraform</groupId>
    <artifactId>terraform-spring-boot-starter</artifactId>
    <version>1.0.0</version>
</dependency>

And now let's also introduce the Azure credentials in application.properties:

terraform.armSubscriptionId=<Azure Subscription ID>
terraform.armClientId=<Azure Client ID>
terraform.armClientSecret=<Azure Client Secret>
terraform.armTenantId=<Azure Tenant ID>

The final step is to let the Spring framework wire up everything in your spring boot application:

@SpringBootApplication
public class SpringStarterSampleApp implements CommandLineRunner {
    public static void main(String[] args) {
        SpringApplication.run(SpringStarterSampleApp.class, args);
    }

    @Autowired
    private TerraformClient terraform;

    @Override
    public void run(String... args) throws Exception {
        try {
            this.terraform.setOutputListener(System.out::println);
            this.terraform.setErrorListener(System.err::println);

            this.terraform.setWorkingDirectory("/some/local/path/");
            this.terraform..plan().get();
            this.terraform.apply().get();
        } finally {
            this.terraform.close();
        }
    }
}

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

com.microsoft.terraform

Microsoft

Open source projects and samples from Microsoft

Versions

Version
1.0.0