Skip to content

Commit

Permalink
fixed datacenter test when running multiple tests in paralel
Browse files Browse the repository at this point in the history
  • Loading branch information
iblindu committed Jul 27, 2022
1 parent 764e82a commit 57f37d8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions docs/resources/k8s_node_pool.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,12 @@ The following arguments are supported:
- `datacenter_id` - (Required)[string] A Datacenter's UUID
- `k8s_cluster_id`- (Required)[string] A k8s cluster's UUID
- `cpu_family` - (Required)[string] The desired CPU Family - See the API documentation for more information. *This attribute is immutable*.
- `availability_zone` - (Required)[string] - The desired Compute availability zone - See the API documentation for more information. *This attribute is immutable*.
- `storage_type` -(Required)[string] - The desired storage type - SSD/HDD. *This attribute is immutable*.
- `node_count` -(Required)[int] - The desired number of nodes in the node pool
- `cores_count` -(Required)[int] - The CPU cores count for each node of the node pool. *This attribute is immutable*.
- `ram_size` -(Required)[int] - The desired amount of RAM, in MB. *This attribute is immutable*.
- `storage_size` -(Required)[int] - The size of the volume in GB. The size should be greater than 10GB. *This attribute is immutable*.
- `availability_zone` - (Required)[string] The desired Compute availability zone - See the API documentation for more information. *This attribute is immutable*.
- `storage_type` -(Required)[string] The desired storage type - SSD/HDD. *This attribute is immutable*.
- `node_count` -(Required)[int] The desired number of nodes in the node pool
- `cores_count` -(Required)[int] The CPU cores count for each node of the node pool. *This attribute is immutable*.
- `ram_size` -(Required)[int] The desired amount of RAM, in MB. *This attribute is immutable*.
- `storage_size` -(Required)[int] The size of the volume in GB. The size should be greater than 10GB. *This attribute is immutable*.
- `public_ips` - (Optional)[list] A list of public IPs associated with the node pool; must have at least `node_count + 1` elements
- `labels` - (Optional)[map] A key/value map of labels
- `annotations` - (Optional)[map] A key/value map of annotations
Expand Down
2 changes: 1 addition & 1 deletion ionoscloud/resource_datacenter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ data ` + DatacenterResource + ` ` + DatacenterDataSourceByName + ` {

const testAccDataSourceDatacenterPartialMatchName = testAccCheckDatacenterConfigBasic + `
data ` + DatacenterResource + ` ` + DatacenterDataSourceByName + ` {
name = "` + DataSourcePartial + `"
name = "test_data"
partial_match = true
}`

Expand Down

0 comments on commit 57f37d8

Please sign in to comment.