Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit 9e04f0f

Browse files
Nuno RibeiroNuno Ribeiro
authored andcommitted
updates package name and readme file
1 parent a41ec32 commit 9e04f0f

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
terraform-provider-mssql
77
.idea
88
*.iml
9+
builds

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Terraform Microsoft SQL Server Provider
22

3+
based on https://github.com/maxjoehnk/terraform-provider-mssql
4+
35
## Usage
46
```hcl
57
provider "mssql" {
@@ -10,7 +12,7 @@ provider "mssql" {
1012
1113
resource "mssql_database" "db" {
1214
name = "MyDatabase"
13-
owner = "${mssql_role.user.name}"
15+
owner = mssql_role.user.name
1416
}
1517
1618
resource "mssql_role" "user" {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/maxjoehnk/terraform-provider-mssql
1+
module github.com/nrgribeiro/terraform-provider-mssql
22

33
require (
44
github.com/denisenkom/go-mssqldb v0.0.0-20190204142019-df6d76eb9289

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
5-
"github.com/maxjoehnk/terraform-provider-mssql/mssql"
5+
"github.com/nrgribeiro/terraform-provider-mssql/mssql"
66
)
77

88
func main() {

0 commit comments

Comments
 (0)