This repository was archived by the owner on Jan 2, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed
Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 66terraform-provider-mssql
77.idea
88* .iml
9+ builds
Original file line number Diff line number Diff line change 11# Terraform Microsoft SQL Server Provider
22
3+ based on https://github.com/maxjoehnk/terraform-provider-mssql
4+
35## Usage
46``` hcl
57provider "mssql" {
@@ -10,7 +12,7 @@ provider "mssql" {
1012
1113resource "mssql_database" "db" {
1214 name = "MyDatabase"
13- owner = "${ mssql_role.user.name}"
15+ owner = mssql_role.user.name
1416}
1517
1618resource "mssql_role" "user" {
Original file line number Diff line number Diff line change 1- module github.com/maxjoehnk /terraform-provider-mssql
1+ module github.com/nrgribeiro /terraform-provider-mssql
22
33require (
44 github.com/denisenkom/go-mssqldb v0.0.0-20190204142019-df6d76eb9289
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package main
22
33import (
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
88func main () {
You can’t perform that action at this time.
0 commit comments