Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion infracost-usage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version: 0.1
resource_usage:
aws_instance.web_app:
operating_system: linux # Use this to override the operating system of the instance, can be: linux, windows, suse, rhel.
operating_system: rhel # Use this to override the operating system of the instance, can be: linux, windows, suse, rhel.
aws_lambda_function.hello_world:
monthly_requests: 100000000 # Monthly requests to the Lambda function.
request_duration_ms: 250 # Try changing this to 100 (milliseconds) to compare costs
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ provider "aws" {
}

resource "aws_instance" "web_app" {
ami = "ami-674cbc1e"
ami = "ami-674cbc1f"
instance_type = "m5.4xlarge" # <<<<< Try changing this to m5.8xlarge to compare the costs

root_block_device {
Expand Down