Skip to content

Commit f1aa519

Browse files
authored
Merge pull request #287 from rawmind0/support126
Fix rke_cluster.services.etcd.backup_config.timeout argument at tf schema
2 parents 6f8bf7d + 8e2f10d commit f1aa519

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 1.2.1 (March 3, 2021)
2+
3+
FEATURES:
4+
5+
6+
7+
ENHANCEMENTS:
8+
9+
10+
11+
BUG FIXES:
12+
13+
* Fix `rke_cluster.services.etcd.backup_config.timeout` argument at tf schema
14+
115
## 1.2.0 (March 3, 2021)
216

317
FEATURES:

rke/schema_rke_cluster_services_etcd.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@ func rkeClusterServicesEtcdBackupConfigFields() map[string]*schema.Schema {
7272
Optional: true,
7373
Default: false,
7474
},
75+
"timeout": {
76+
Type: schema.TypeInt,
77+
Optional: true,
78+
Default: 300,
79+
},
7580
}
7681
return s
7782
}

0 commit comments

Comments
 (0)