svn commit: r509711 - in head/sysutils: . terraform-provider-vultr

Ben Woods woodsb02 at FreeBSD.org
Sat Aug 24 02:28:45 UTC 2019


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 at 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


More information about the svn-ports-all mailing list