terraform-provider-iactools

LederWorks IaC Tools terraform provider

https://github.com/lederworks/terraform-provider-iactools

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (15.8%) to scientific vocabulary
Last synced: 6 months ago · JSON representation ·

Repository

LederWorks IaC Tools terraform provider

Basic Info
  • Host: GitHub
  • Owner: LederWorks
  • License: mpl-2.0
  • Language: Go
  • Default Branch: main
  • Size: 167 KB
Statistics
  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • Open Issues: 0
  • Releases: 2
Created 11 months ago · Last pushed 6 months ago
Metadata Files
Readme Changelog Contributing License Code of conduct Citation Codeowners Security Support Authors

README.md

Terraform logo

LederWorks IaC Tools Terraform Provider

The iactools Terraform Provider brings custom functions which is not possible to implement with pure terraform logic.

When using the iactools provider we recommend using the latest version of Terraform Core (the latest version can be found here).

Requirements

Building The Provider

  1. Clone the repository
  2. Enter the repository directory
  3. Build the provider using the Go install command:

shell go install

Adding Dependencies

This provider uses Go modules. Please see the Go documentation for the most up to date information about using Go modules.

To add a new dependency github.com/author/dependency to your Terraform provider:

shell go get github.com/author/dependency go mod tidy

Then commit the changes to go.mod and go.sum.

Using the provider

```hcl

1. Specify the version of the IaC Tools Provider to use

terraform { required_providers { iactools = { source = "lederworks/iactools" version = "0.2.0" } } }

2. Configure the IaC Tools Provider

provider "iactools" { # requires no configuration }

3. Run the inverse_cidr function

output "inversecidr" { value = provider::iactools::inversecidr("192.168.0.0/16", "192.168.1.0/24") } ```

Developing the Provider

If you wish to work on the provider, you'll first need Go installed on your machine (see Requirements above).

To compile the provider, run go install. This will build the provider and put the provider binary in the $GOPATH/bin directory.

To generate or update documentation, run make generate.

In order to run the full suite of Acceptance tests, run make testacc.

Note: Acceptance tests create real resources, and often cost money to run.

shell make testacc

Owner

  • Name: LederWorks
  • Login: LederWorks
  • Kind: organization
  • Email: iac@lederworks.com
  • Location: Hungary

LederWorks: an IaC Project

Citation (CITATION.cff)

#Copyright (c) LederWorks
#SPDX-FileCopyrightText: The terraform-provider-iactools Authors
#SPDX-License-Identifier: MPL-2.0

cff-version: 1.2.0
title: terraform-provider-iactools
message: If you use this software, please cite it as below.
type: software
authors:
- family-names: Bánó
  given-names: Bence
  email: bence.bano@lederworks.com
url: https://registry.terraform.io/providers/lederworks/iactools/
license: MPL-2.0
keywords:
  - IaC
  - IP
  - go
  - make
  - terraform
  - terraform-provider

GitHub Events

Total
  • Release event: 2
  • Delete event: 14
  • Issue comment event: 1
  • Push event: 54
  • Pull request event: 22
  • Create event: 18
Last Year
  • Release event: 2
  • Delete event: 14
  • Issue comment event: 1
  • Push event: 54
  • Pull request event: 22
  • Create event: 18

Packages

  • Total packages: 1
  • Total downloads: unknown
  • Total dependent packages: 0
  • Total dependent repositories: 0
  • Total versions: 2
proxy.golang.org: github.com/lederworks/terraform-provider-iactools
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent packages count: 5.6%
Average: 5.8%
Dependent repos count: 6.0%
Last synced: 6 months ago