diff --git a/examples/README.md b/examples/README.md
index 0f9b393..33e3468 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -30,5 +30,10 @@ No resources.
## Outputs
-No outputs.
+| Name | Description |
+|------|-------------|
+| [aws\_tfc\_audience](#output\_aws\_tfc\_audience) | n/a |
+| [full\_name](#output\_full\_name) | n/a |
+| [oidc\_claims](#output\_oidc\_claims) | n/a |
+| [role\_arns](#output\_role\_arns) | n/a |
\ No newline at end of file
diff --git a/examples/outputs.tf b/examples/outputs.tf
new file mode 100644
index 0000000..582b5fa
--- /dev/null
+++ b/examples/outputs.tf
@@ -0,0 +1,16 @@
+output "full_name" {
+ value = module.tfc_aws_dynamic_credentials.full_name
+}
+
+output "oidc_claims" {
+ value = module.tfc_aws_dynamic_credentials.oidc_claims
+}
+
+output "role_arns" {
+ value = module.tfc_aws_dynamic_credentials.role_arns
+}
+
+output "aws_tfc_audience" {
+ value = module.tfc_aws_dynamic_credentials.aws_tfc_audience
+ sensitive = true
+}