Improve description for default fields (#369)
This commit is contained in:
parent
e4bbcfd50a
commit
e2e5f19a29
10 changed files with 26 additions and 26 deletions
|
|
@ -184,7 +184,7 @@ func (r *recordSetResource) Schema(_ context.Context, _ resource.SchemaRequest,
|
|||
},
|
||||
},
|
||||
"active": schema.BoolAttribute{
|
||||
Description: "Specifies if the record set is active or not.",
|
||||
Description: "Specifies if the record set is active or not. Defaults to `true`",
|
||||
Optional: true,
|
||||
Computed: true,
|
||||
Default: booldefault.StaticBool(true),
|
||||
|
|
|
|||
|
|
@ -211,7 +211,7 @@ func (r *zoneResource) Schema(_ context.Context, _ resource.SchemaRequest, resp
|
|||
},
|
||||
},
|
||||
"is_reverse_zone": schema.BoolAttribute{
|
||||
Description: "Specifies, if the zone is a reverse zone or not.",
|
||||
Description: "Specifies, if the zone is a reverse zone or not. Defaults to `false`",
|
||||
Optional: true,
|
||||
Computed: true,
|
||||
Default: booldefault.StaticBool(false),
|
||||
|
|
@ -254,7 +254,7 @@ func (r *zoneResource) Schema(_ context.Context, _ resource.SchemaRequest, resp
|
|||
},
|
||||
},
|
||||
"type": schema.StringAttribute{
|
||||
Description: "Zone type. E.g. `primary`",
|
||||
Description: "Zone type. Defaults to `primary`",
|
||||
Optional: true,
|
||||
Computed: true,
|
||||
Default: stringdefault.StaticString("primary"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue