Date: Sat, 24 Aug 2019 02:28:44 +0000 (UTC) From: Ben Woods <woodsb02@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r509711 - in head/sysutils: . terraform-provider-vultr Message-ID: <201908240228.x7O2Sico064179@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: woodsb02 Date: Sat Aug 24 02:28:43 2019 New Revision: 509711 URL: https://svnweb.freebsd.org/changeset/ports/509711 Log: Add new port sysutils/terraform-provider-vultr A community developed provider to support the Vultr cloud with Terraform. Terraform is used to create, manage, and update infrastructure resources such as physical machines, VMs, network switches, containers, and more. Almost any infrastructure type can be represented as a resource in Terraform. A provider is responsible for understanding API interactions and exposing resources. Providers generally are an IaaS, PaaS, or SaaS services. WWW: https://github.com/squat/terraform-provider-vultr Added: head/sysutils/terraform-provider-vultr/ head/sysutils/terraform-provider-vultr/Makefile (contents, props changed) head/sysutils/terraform-provider-vultr/distinfo (contents, props changed) head/sysutils/terraform-provider-vultr/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sat Aug 24 01:16:46 2019 (r509710) +++ head/sysutils/Makefile Sat Aug 24 02:28:43 2019 (r509711) @@ -1335,6 +1335,7 @@ SUBDIR += tenshi SUBDIR += tentakel SUBDIR += terraform + SUBDIR += terraform-provider-vultr SUBDIR += testdisk SUBDIR += thefish SUBDIR += timelimit Added: head/sysutils/terraform-provider-vultr/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/terraform-provider-vultr/Makefile Sat Aug 24 02:28:43 2019 (r509711) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= terraform-provider-vultr +PORTVERSION= 0.1.10 +DISTVERSIONPREFIX= v +CATEGORIES= sysutils + +MAINTAINER= woodsb02@FreeBSD.org +COMMENT= Terraform provider for Vultr + +LICENSE= MPL20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= terraform:sysutils/terraform + +USES= go +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} +USE_GITHUB= yes +GH_ACCOUNT= squat + +PLIST_FILES= bin/${PORTNAME} + +.include <bsd.port.mk> Added: head/sysutils/terraform-provider-vultr/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/terraform-provider-vultr/distinfo Sat Aug 24 02:28:43 2019 (r509711) @@ -0,0 +1,3 @@ +TIMESTAMP = 1566611069 +SHA256 (squat-terraform-provider-vultr-v0.1.10_GH0.tar.gz) = ed4e874cbe1a7f3f163dbfdedc436c7443bede5f8aeabc2857f50dfcf1e2ed3f +SIZE (squat-terraform-provider-vultr-v0.1.10_GH0.tar.gz) = 4297187 Added: head/sysutils/terraform-provider-vultr/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/terraform-provider-vultr/pkg-descr Sat Aug 24 02:28:43 2019 (r509711) @@ -0,0 +1,10 @@ +A community developed provider to support the Vultr cloud with Terraform. + +Terraform is used to create, manage, and update infrastructure resources such as +physical machines, VMs, network switches, containers, and more. +Almost any infrastructure type can be represented as a resource in Terraform. + +A provider is responsible for understanding API interactions and exposing +resources. Providers generally are an IaaS, PaaS, or SaaS services. + +WWW: https://github.com/squat/terraform-provider-vultr
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908240228.x7O2Sico064179>