Categorygithub.com/pbar1/atlantis-go
repositorypackage
1.0.0
Repository: https://github.com/pbar1/atlantis-go.git
Documentation: pkg.go.dev

# README

Atlantis SDK for Go

GoDoc Go Report Card

Go library for creating custom run commands for Atlantis.

go get github.com/pbar1/atlantis-go

Usage

package main

import (
	"log"

	atlantis "github.com/pbar1/atlantis-go"
)

func main() {
	step, err := atlantis.NewRunStep()
	if err != nil {
		log.Fatal(err)
	}
	log.Printf("Pull request number: %d\n", step.PullNum)
	log.Printf("Terraform plan file: %s\n", step.Planfile)
}