Skip to content

Commit

Permalink
Merge pull request #7 from jaxxstorm/jaxxstorm/data_docstrings
Browse files Browse the repository at this point in the history
add doc strings for data sources
  • Loading branch information
macb authored Jan 9, 2024
2 parents 5126f61 + b4704eb commit b42ca37
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions vantage/aws_provider_info_data_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,21 +39,34 @@ func (d *awsProviderInfoDataSource) Schema(_ context.Context, _ datasource.Schem
Attributes: map[string]schema.Attribute{
"iam_role_arn": schema.StringAttribute{
Computed: true,
Description: "The IAM role that Vantage assumes into your account.",
MarkdownDescription: "The IAM role that Vantage assumes into your account.",
},
"external_id": schema.StringAttribute{
Computed: true,
Description: "The Vantage external ID to authenticate your account.",
MarkdownDescription: "The Vantage external ID to authenticate your account.",
Sensitive: true,
},
"root_policy": schema.StringAttribute{
Computed: true,
Description: "The policy that allows Vantage to acces billing information.",
MarkdownDescription: "The policy that allows Vantage to manage autopilot.",
},
"autopilot_policy": schema.StringAttribute{
Computed: true,
Description: "The policy that allows Vantage to manage autopilot",
MarkdownDescription: "The policy that allows Vantage to manage autopilot.",
},
"cloudwatch_metrics_policy": schema.StringAttribute{
Computed: true,
Description: "The policy that allows Vantage to retrieve cloudwatch metrics from your AWS account.",
MarkdownDescription: "The policy that allows Vantage to retrieve cloudwatch metrics from your AWS account.",
},
"additional_resources_policy": schema.StringAttribute{
Computed: true,
Description: "The policy that allows Vantage to list and describe resources from your AWS account.",
MarkdownDescription: "The policy that allows Vantage to list and describe resources from your AWS account.",
},
},
}
Expand Down

0 comments on commit b42ca37

Please sign in to comment.