Kerim Satirli
baf2920acf
adds missing `language` argument
...
Best I can tell from https://github.com/hashicorp/terraform/blob/HEAD/builtin/providers/bitbucket/resource_repository.go#L23 , the `language` argument is missing.
Adding it in a `bitbucket_repository` resource is supported:
```
resource "bitbucket_repository" "test-repository" {
owner = "${var.bitbucket_username}"
name = "test-repository"
scm = "${var.bitbucket_settings["scm"]}"
language = "markdown"
}
```
2016-10-22 18:35:37 +02:00
Kerim Satirli
9b031405e3
adds import instructions for Bitbucket repos
...
Hi there!
Started playing with the Bitbucket provider (great job @cwood!) and wanted to import a few dozen repositories. The documentation currently does not list it, but importing repositories is possible, using the following (for a repository identified as `my-repo`:
```
$ terraform import bitbucket_repository.my-repo my-repo
```
Hope this helps!
2016-10-18 20:51:24 +02:00
Dean Wilson
e0b336e359
Fix typos in the bitbucket_repository example.
2016-10-06 22:08:22 +01:00
stack72
c600915472
provider/bitbucket: Add the bitbucket documentation
...
fixes #9177
2016-10-03 13:23:54 +01:00
stack72
2813790dd9
provider/bitbucket: Making the necessary documentation changes for the bitbucket typos
2016-09-21 19:47:31 +01:00
Colin Wood
453ac9bb3d
Refactor of username -> owner
2016-09-09 12:13:45 -07:00
Colin Wood
d1373208aa
Setup docs for bitbucket provider.
2016-08-08 10:25:52 -07:00