Skip to content

Commit 68f862a

Browse files
committed
fix: fixed the timestamp examples and added meaningful example for tags
1 parent b61b799 commit 68f862a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/resources/payment_method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ resource "meshstack_payment_method" "example" {
3030
3131
spec = {
3232
display_name = "My Payment Method"
33-
expiration_date = "2025-12-31T23:59:59Z"
33+
expiration_date = "2025-12-31"
3434
amount = 10000
3535
tags = {
36-
Country = ["US"]
36+
CostCenter = ["0000"]
3737
Type = ["production"]
3838
}
3939
}

examples/resources/meshstack_payment_method/resource.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ resource "meshstack_payment_method" "example" {
1212

1313
spec = {
1414
display_name = "My Payment Method"
15-
expiration_date = "2025-12-31T23:59:59Z"
15+
expiration_date = "2025-12-31"
1616
amount = 10000
1717
tags = {
18-
Country = ["US"]
18+
CostCenter = ["0000"]
1919
Type = ["production"]
2020
}
2121
}

0 commit comments

Comments
 (0)