mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-24 15:55:17 -04:00
misc: skip message about community license with marketplace image
This commit is contained in:
parent
1c8a7e4c22
commit
f94c6ca0d4
12 changed files with 66 additions and 28 deletions
|
@ -229,13 +229,19 @@ func newImageAttributeSchema(t attributeType) schema.Attribute {
|
|||
Computed: !isInput,
|
||||
Required: isInput,
|
||||
},
|
||||
"marketplace_image": schema.BoolAttribute{
|
||||
Description: "Whether a marketplace image should be used.",
|
||||
MarkdownDescription: "Whether a marketplace image should be used.",
|
||||
Optional: true,
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
// imageAttribute is the image attribute's data model.
|
||||
type imageAttribute struct {
|
||||
Reference string `tfsdk:"reference"`
|
||||
Version string `tfsdk:"version"`
|
||||
ShortPath string `tfsdk:"short_path"`
|
||||
Reference string `tfsdk:"reference"`
|
||||
Version string `tfsdk:"version"`
|
||||
ShortPath string `tfsdk:"short_path"`
|
||||
MarketplaceImage *bool `tfsdk:"marketplace_image"`
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue