Difference between revisions of "Terraform functions: file"
Jump to navigation
Jump to search
(Created page with "https://www.terraform.io/docs/language/functions/file.html == See also == * {{terraform functions}} Category:Terraform") |
Tags: Mobile web edit, Mobile edit |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
https://www.terraform.io/docs/language/functions/file.html | https://www.terraform.io/docs/language/functions/file.html | ||
+ | Official example: | ||
+ | > file("${path.module}/hello.txt") | ||
+ | Hello World | ||
+ | |||
+ | == Errors == | ||
+ | ╷ | ||
+ | │ Error: Invalid function argument | ||
+ | │ | ||
+ | │ on main.tf line 151, in resource "aws_iam_policy" "ebs_csi_controller": | ||
+ | │ 151: policy = [[file]]("${path.module}/policies/ebs_csi_controller_iam_policy.json") | ||
+ | │ ├──────────────── | ||
+ | │ │ while calling file(path) | ||
+ | │ │ path.module is "." | ||
+ | │ | ||
+ | │ Invalid value for "path" parameter: no file exists at | ||
+ | │ "./policies/ebs_csi_controller_iam_policy.json"; this function works only | ||
+ | │ with files that are distributed as part of the configuration source code, so | ||
+ | │ if this file will be created by a resource in this configuration you must | ||
+ | │ instead obtain this result from an attribute of that resource. | ||
== See also == | == See also == |
Latest revision as of 07:43, 22 March 2023
https://www.terraform.io/docs/language/functions/file.html
Official example:
> file("${path.module}/hello.txt") Hello World
Errors[edit]
╷ │ Error: Invalid function argument │ │ on main.tf line 151, in resource "aws_iam_policy" "ebs_csi_controller": │ 151: policy = file("${path.module}/policies/ebs_csi_controller_iam_policy.json") │ ├──────────────── │ │ while calling file(path) │ │ path.module is "." │ │ Invalid value for "path" parameter: no file exists at │ "./policies/ebs_csi_controller_iam_policy.json"; this function works only │ with files that are distributed as part of the configuration source code, so │ if this file will be created by a resource in this configuration you must │ instead obtain this result from an attribute of that resource.
See also[edit]
Advertising: