Skip to content

Commit

Permalink
release v0.1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
contabo committed Sep 11, 2023
1 parent 1283d91 commit b93252d
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
1 change: 0 additions & 1 deletion contabo/resource_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ func resourceInstance() *schema.Resource {
Type: schema.TypeString,
Computed: true,
Description: "The identifier of the compute instance. Use it to manage it!",

},
"existing_instance_id": {
Type: schema.TypeString,
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/custom_instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
required_providers {
contabo = {
source = "contabo/contabo"
version = ">= 0.1.19"
version = ">= 0.1.20"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/use_environment_variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
required_providers {
contabo = {
source = "contabo/contabo"
version = ">= 0.1.19"
version = ">= 0.1.20"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ terraform {
required_providers {
contabo = {
source = "contabo/contabo"
version = ">= 0.1.19"
version = ">= 0.1.20"
}
}
}
Expand Down
1 change: 1 addition & 0 deletions docs/resources/contabo_instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ resource "contabo_instance" "database_instance" {
- `add_ons` (Block List) (see [below for nested schema](#nestedblock--add_ons))
- `cancel_date` (String) The date on which the instance will be cancelled.
- `display_name` (String) The instance name chosen by the customer that will be shown in the customer panel.
- `existing_instance_id` (String) The identifier of the existing compute instance. (override id)
- `image_id` (String) CAUTION: On updating this value your server will be reinstalled! Image Id is used to set up the compute instance. Ubuntu 20.04 is the default, currently you have to get the Id with our [API](https://api.contabo.com/#tag/Images/operation/retrieveImage) or via our [command line](https://github.com/contabo/cntb) tool with this command: `cntb get images`.
- `license` (String) Additional license in order to enhance your chosen product. It is mainly needed for software licenses on your product (not needed for windows). See our [api documentation](https://api.contabo.com/#tag/Instances/operation/createInstance) for all available licenses.
- `period` (Number) Initial contract period in months. Available periods are: 1, 3, 6 and 12 months. The default setting is 1 month.
Expand Down
2 changes: 1 addition & 1 deletion examples/custom_instance/custom_instance.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
contabo = {
source = "contabo/contabo"
version = ">= 0.1.19"
version = ">= 0.1.20"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/main.tf.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
contabo = {
source = "contabo/contabo"
version = ">= 0.1.19"
version = ">= 0.1.20"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
contabo = {
source = "contabo/contabo"
version = ">= 0.1.19"
version = ">= 0.1.20"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
contabo = {
source = "contabo/contabo"
version = ">= 0.1.19"
version = ">= 0.1.20"
}
}
}
Expand Down

0 comments on commit b93252d

Please sign in to comment.