Skip to content

Commit

Permalink
Update to use right resource name, pending provider 2.19
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudlh committed Aug 19, 2022
1 parent 31d02f6 commit df3fa77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/webapps/static_site/module.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
resource "azurecaf_name" "static_site" {
name = var.name
resource_type = "azurerm_app_service" # FIXME: missing naming convention provider for 'azurerm_static_site' (https://github.com/aztfmod/terraform-provider-azurecaf/issues/178)
resource_type = "azurerm_static_site"
prefixes = var.global_settings.prefixes
random_length = var.global_settings.random_length
clean_input = true
Expand Down

2 comments on commit df3fa77

@robwasmann
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

provider 3.19

@robwasmann
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You may have to update your required providers block in the module as well?

Please sign in to comment.