Skip to content

Commit f9489e9

Browse files
authored
fix output uri (#8)
1 parent 77a1027 commit f9489e9

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ terraform {
2222
required_providers {
2323
curl2 = {
2424
source = "mehulgohil/curl2"
25-
version = "1.3.0"
25+
version = "1.3.1"
2626
}
2727
}
2828
}

curl2/data_source.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ func (c *curl2DataSource) Read(ctx context.Context, req datasource.ReadRequest,
184184
}
185185
config.Response, diags = types.ObjectValue(
186186
map[string]attr.Type{
187+
"uri": types.StringType,
187188
"body": types.StringType,
188189
"status_code": types.Int64Type,
189190
},

docs/data-sources/curl2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ terraform {
1717
required_providers {
1818
curl2 = {
1919
source = "mehulgohil/curl2"
20-
version = "1.3.0"
20+
version = "1.3.1"
2121
}
2222
}
2323
}

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ terraform {
1717
required_providers {
1818
curl2 = {
1919
source = "mehulgohil/curl2"
20-
version = "1.3.0"
20+
version = "1.3.1"
2121
}
2222
}
2323
}

examples/data-sources/curl2/data-source.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
curl2 = {
44
source = "mehulgohil/curl2"
5-
version = "1.3.0"
5+
version = "1.3.1"
66
}
77
}
88
}

examples/provider/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
curl2 = {
44
source = "mehulgohil/curl2"
5-
version = "1.3.0"
5+
version = "1.3.1"
66
}
77
}
88
}

0 commit comments

Comments
 (0)