File tree Expand file tree Collapse file tree 1 file changed +23
-21
lines changed
Expand file tree Collapse file tree 1 file changed +23
-21
lines changed Original file line number Diff line number Diff line change @@ -20,28 +20,30 @@ func dataSourceIisCertificates() *schema.Resource {
2020 ReadContext : dataSourceIisCertificatesRead ,
2121 Schema : map [string ]* schema.Schema {
2222 "certificates" : {
23- Type : schema .TypeList ,
23+ Type : schema .TypeSet ,
2424 Computed : true ,
25- Elem : map [string ]* schema.Schema {
26- AliasKey : {
27- Type : schema .TypeString ,
28- Required : true ,
29- },
30- IdKey : {
31- Type : schema .TypeString ,
32- Required : true ,
33- },
34- IssuedByKey : {
35- Type : schema .TypeString ,
36- Required : true ,
37- },
38- SubjectKey : {
39- Type : schema .TypeString ,
40- Optional : true ,
41- },
42- ThumbprintKey : {
43- Type : schema .TypeString ,
44- Computed : true ,
25+ Elem : & schema.Resource {
26+ Schema : map [string ]* schema.Schema {
27+ AliasKey : {
28+ Type : schema .TypeString ,
29+ Required : true ,
30+ },
31+ IdKey : {
32+ Type : schema .TypeString ,
33+ Required : true ,
34+ },
35+ IssuedByKey : {
36+ Type : schema .TypeString ,
37+ Required : true ,
38+ },
39+ SubjectKey : {
40+ Type : schema .TypeString ,
41+ Optional : true ,
42+ },
43+ ThumbprintKey : {
44+ Type : schema .TypeString ,
45+ Computed : true ,
46+ },
4547 },
4648 },
4749 },
You can’t perform that action at this time.
0 commit comments