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" } ```
This commit is contained in:
parent
f5c4d79a0e
commit
baf2920acf
|
@ -34,6 +34,7 @@ The following arguments are supported:
|
||||||
Defaults to git.
|
Defaults to git.
|
||||||
* `is_private` - (Optional) If this should be private or not. Defaults to `true`.
|
* `is_private` - (Optional) If this should be private or not. Defaults to `true`.
|
||||||
* `website` - (Optional) URL of website associated with this repository.
|
* `website` - (Optional) URL of website associated with this repository.
|
||||||
|
* `language` - (Optional) What the language of this repository should be.
|
||||||
* `has_issues` - (Optional) If this should have issues turned on or not.
|
* `has_issues` - (Optional) If this should have issues turned on or not.
|
||||||
* `has_wiki` - (Optional) If this should have wiki turned on or not.
|
* `has_wiki` - (Optional) If this should have wiki turned on or not.
|
||||||
* `project_key` - (Optional) If you want to have this repo associated with a
|
* `project_key` - (Optional) If you want to have this repo associated with a
|
||||||
|
|
Loading…
Reference in New Issue