Date: Thu, 4 Jun 2020 18:56:20 +0000 (UTC) From: =?UTF-8?Q?Vin=c3=adcius_Zavam?= <egypcio@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r537929 - in head/sysutils: . terraform-provider-gridscale Message-ID: <202006041856.054IuKuQ010793@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: egypcio Date: Thu Jun 4 18:56:20 2020 New Revision: 537929 URL: https://svnweb.freebsd.org/changeset/ports/537929 Log: [NEW] sysutils/terraform-provider-gridscale: Terraform provider for gridscale Community developed provider to support gridscale's cloud with Terraform. Terraform is used to create, manage, and update infrastructure resources such as physical machines, VMs, network switches, containers, and more. A provider is responsible for understanding API interactions and exposing resources. Providers generally are an IaaS, PaaS, or SaaS services. WWW: https://github.com/terraform-providers/terraform-provider-gridscale Added: head/sysutils/terraform-provider-gridscale/ head/sysutils/terraform-provider-gridscale/Makefile (contents, props changed) head/sysutils/terraform-provider-gridscale/distinfo (contents, props changed) head/sysutils/terraform-provider-gridscale/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Jun 4 18:36:53 2020 (r537928) +++ head/sysutils/Makefile Thu Jun 4 18:56:20 2020 (r537929) @@ -1266,6 +1266,7 @@ SUBDIR += tealdeer SUBDIR += tenshi SUBDIR += terraform + SUBDIR += terraform-provider-gridscale SUBDIR += terraform-provider-vultr SUBDIR += testdisk SUBDIR += thefish Added: head/sysutils/terraform-provider-gridscale/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/terraform-provider-gridscale/Makefile Thu Jun 4 18:56:20 2020 (r537929) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= terraform-provider-gridscale +PORTVERSION= 1.6.0 +DISTVERSIONPREFIX= v +CATEGORIES= sysutils + +MAINTAINER= egypcio@FreeBSD.org +COMMENT= Terraform provider for gridscale + +LICENSE= MPL20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= terraform:sysutils/terraform + +USES= go:modules +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} +USE_GITHUB= yes +GH_ACCOUNT= terraform-providers + +PLIST_FILES= bin/${PORTNAME} + +.include <bsd.port.mk> Added: head/sysutils/terraform-provider-gridscale/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/terraform-provider-gridscale/distinfo Thu Jun 4 18:56:20 2020 (r537929) @@ -0,0 +1,3 @@ +TIMESTAMP = 1591289717 +SHA256 (terraform-providers-terraform-provider-gridscale-v1.6.0_GH0.tar.gz) = 86db28e2b5c18a3a9aa8209bd396a5980b8fe25971e07bab2361f346a8104be2 +SIZE (terraform-providers-terraform-provider-gridscale-v1.6.0_GH0.tar.gz) = 4611834 Added: head/sysutils/terraform-provider-gridscale/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/terraform-provider-gridscale/pkg-descr Thu Jun 4 18:56:20 2020 (r537929) @@ -0,0 +1,10 @@ +A community developed provider to support gridscale's 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/terraform-providers/terraform-provider-gridscale
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006041856.054IuKuQ010793>