Skip to content

Commit

Permalink
fix: Add missing generated certificate properties in `routeros_capsma…
Browse files Browse the repository at this point in the history
…n_manager`
  • Loading branch information
dokmic authored and vaerh committed Jan 16, 2024
1 parent 0a2863f commit e4378af
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions routeros/resource_capsman_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import (
"ca-certificate": "none",
"certificate": "none",
"enabled": "false",
"generated-ca-certificate":"CAPsMAN-CA-000000000000",
"generated-certificate":"CAPsMAN-000000000000",
"package-path": "",
"require-peer-certificate": "false",
"upgrade-policy": "none"
Expand Down Expand Up @@ -40,6 +42,16 @@ func ResourceCapsManManager() *schema.Resource {
Optional: true,
Description: "Disable or enable CAPsMAN functionality.",
},
"generated_ca_certificate": {
Type: schema.TypeString,
Computed: true,
Description: "Generated CA certificate.",
},
"generated_certificate": {
Type: schema.TypeString,
Computed: true,
Description: "Generated CAPsMAN certificate.",
},
"package_path": {
Type: schema.TypeString,
Optional: true,
Expand Down

0 comments on commit e4378af

Please sign in to comment.