File tree Expand file tree Collapse file tree 4 files changed +8
-12
lines changed Expand file tree Collapse file tree 4 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,11 @@ Notable changes between releases.
4
4
5
5
## Latest
6
6
7
+ ## v0.13.0
8
+
7
9
* Update the target stable Ignition spec version to v3.4.0 ([ #156 ] ( https://github.com/poseidon/terraform-provider-ct/pull/156 ) )
8
- * Parse Butane Configs to Ignition v3.4.0
10
+ * Parse Butane Configs to Ignition v3.4.0 ([ #159 ] ( https://github.com/poseidon/terraform-provider-ct/pull/159 ) )
11
+ * Remove deprecated ` platform ` field
9
12
* Move implementation to an ` internal ` package ([ #157 ] ( https://github.com/poseidon/terraform-provider-ct/pull/157 ) )
10
13
11
14
## v0.12.0
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ terraform {
18
18
required_providers {
19
19
ct = {
20
20
source = "poseidon/ct"
21
- version = "0.12 .0"
21
+ version = "0.13 .0"
22
22
}
23
23
}
24
24
}
@@ -28,7 +28,7 @@ Define a Butane config for Fedora CoreOS or Flatcar Linux:
28
28
29
29
``` yaml
30
30
variant : fcos
31
- version : 1.4 .0
31
+ version : 1.5 .0
32
32
passwd :
33
33
users :
34
34
- name : core
@@ -38,7 +38,7 @@ passwd:
38
38
39
39
` ` ` yaml
40
40
variant : flatcar
41
- version : 1.0 .0
41
+ version : 1.1 .0
42
42
passwd :
43
43
users :
44
44
- name : core
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ terraform {
5
5
local = " ~> 1.2"
6
6
ct = {
7
7
source = " poseidon/ct"
8
- version = " ~> 0.12 .0"
8
+ version = " ~> 0.13 .0"
9
9
# source = "terraform.localhost/poseidon/ct"
10
10
# version = "0.12.0"
11
11
}
Original file line number Diff line number Diff line change @@ -22,13 +22,6 @@ func DatasourceConfig() *schema.Resource {
22
22
Type : schema .TypeString ,
23
23
Required : true ,
24
24
},
25
- "platform" : {
26
- Type : schema .TypeString ,
27
- Optional : true ,
28
- Default : "" ,
29
- Deprecated : "platform is no longer used" ,
30
- ForceNew : true ,
31
- },
32
25
"snippets" : {
33
26
Type : schema .TypeList ,
34
27
Elem : & schema.Schema {
You can’t perform that action at this time.
0 commit comments