Skip to content

Commit

Permalink
docs: added example for awscc_route53profiles_profile
Browse files Browse the repository at this point in the history
  • Loading branch information
quixoticmonk committed Sep 4, 2024
1 parent e26ab72 commit 10e7164
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docs/resources/route53profiles_profile.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "awscc_route53profiles_profile Resource - terraform-provider-awscc"
subcategory: ""
description: |-
Expand All @@ -10,7 +9,17 @@ description: |-

Resource Type definition for AWS::Route53Profiles::Profile

## Example Usage

```terraform
resource "awscc_route53profiles_profile" "example" {
name = "example"
tags = [{
key = "Modified By"
value = "AWSCC"
}]
}
```

<!-- schema generated by tfplugindocs -->
## Schema
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
resource "awscc_route53profiles_profile" "example" {
name = "example"
tags = [{
key = "Modified By"
value = "AWSCC"
}]
}
25 changes: 25 additions & 0 deletions templates/resources/route53profiles_profile.md.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}"
subcategory: ""
description: |-
{{ .Description | plainmarkdown | trimspace | prefixlines " " }}
---

# {{.Name}} ({{.Type}})

{{ .Description | trimspace }}

## Example Usage

{{ tffile (printf "examples/resources/%s/route53profiles_profile.tf" .Name)}}

{{ .SchemaMarkdown | trimspace }}
{{- if .HasImport }}

## Import

Import is supported using the following syntax:

{{ codefile "shell" .ImportFile }}

{{- end }}

0 comments on commit 10e7164

Please sign in to comment.