From 41e4f1201e6a72b7ea542ef58ff47735709617ff Mon Sep 17 00:00:00 2001 From: Mateusz Jenek Date: Thu, 8 Feb 2024 11:26:42 +0300 Subject: [PATCH] fix name --- examples/route53/README.md | 2 +- examples/route53/main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/route53/README.md b/examples/route53/README.md index d0d9eaa..c27eb00 100644 --- a/examples/route53/README.md +++ b/examples/route53/README.md @@ -23,7 +23,7 @@ | Name | Type | |------|------| | [humanitec_application.example](https://registry.terraform.io/providers/humanitec/humanitec/latest/docs/resources/application) | resource | -| [humanitec_resource_definition_criteria.redis](https://registry.terraform.io/providers/humanitec/humanitec/latest/docs/resources/resource_definition_criteria) | resource | +| [humanitec_resource_definition_criteria.dns](https://registry.terraform.io/providers/humanitec/humanitec/latest/docs/resources/resource_definition_criteria) | resource | ## Inputs diff --git a/examples/route53/main.tf b/examples/route53/main.tf index d0df616..99d3db1 100644 --- a/examples/route53/main.tf +++ b/examples/route53/main.tf @@ -21,7 +21,7 @@ module "route53" { hosted_zone_id = var.hosted_zone_id } -resource "humanitec_resource_definition_criteria" "redis" { +resource "humanitec_resource_definition_criteria" "dns" { resource_definition_id = module.route53.id app_id = humanitec_application.example.id }