diff --git a/docs/data-sources/acl_auth_method.html.markdown b/docs/data-sources/acl_auth_method.html.md similarity index 100% rename from docs/data-sources/acl_auth_method.html.markdown rename to docs/data-sources/acl_auth_method.html.md diff --git a/docs/data-sources/acl_policy.html.markdown b/docs/data-sources/acl_policy.html.md similarity index 100% rename from docs/data-sources/acl_policy.html.markdown rename to docs/data-sources/acl_policy.html.md diff --git a/docs/data-sources/acl_role.html.markdown b/docs/data-sources/acl_role.html.md similarity index 100% rename from docs/data-sources/acl_role.html.markdown rename to docs/data-sources/acl_role.html.md diff --git a/docs/data-sources/acl_token.html.markdown b/docs/data-sources/acl_token.html.md similarity index 100% rename from docs/data-sources/acl_token.html.markdown rename to docs/data-sources/acl_token.html.md diff --git a/docs/data-sources/acl_token_secret_id.html.markdown b/docs/data-sources/acl_token_secret_id.html.md similarity index 100% rename from docs/data-sources/acl_token_secret_id.html.markdown rename to docs/data-sources/acl_token_secret_id.html.md diff --git a/docs/data-sources/agent_config.html.markdown b/docs/data-sources/agent_config.html.md similarity index 100% rename from docs/data-sources/agent_config.html.markdown rename to docs/data-sources/agent_config.html.md diff --git a/docs/data-sources/agent_self.html.markdown b/docs/data-sources/agent_self.html.md similarity index 100% rename from docs/data-sources/agent_self.html.markdown rename to docs/data-sources/agent_self.html.md diff --git a/docs/data-sources/autopilot_health.html.markdown b/docs/data-sources/autopilot_health.html.md similarity index 100% rename from docs/data-sources/autopilot_health.html.markdown rename to docs/data-sources/autopilot_health.html.md diff --git a/docs/data-sources/datacenters.html.markdown b/docs/data-sources/datacenters.html.md similarity index 100% rename from docs/data-sources/datacenters.html.markdown rename to docs/data-sources/datacenters.html.md diff --git a/docs/data-sources/key_prefix.html.markdown b/docs/data-sources/key_prefix.html.md similarity index 100% rename from docs/data-sources/key_prefix.html.markdown rename to docs/data-sources/key_prefix.html.md diff --git a/docs/data-sources/keys.html.markdown b/docs/data-sources/keys.html.md similarity index 100% rename from docs/data-sources/keys.html.markdown rename to docs/data-sources/keys.html.md diff --git a/docs/data-sources/network_area_members.html.markdown b/docs/data-sources/network_area_members.html.md similarity index 100% rename from docs/data-sources/network_area_members.html.markdown rename to docs/data-sources/network_area_members.html.md diff --git a/docs/data-sources/network_segments.html.markdown b/docs/data-sources/network_segments.html.md similarity index 100% rename from docs/data-sources/network_segments.html.markdown rename to docs/data-sources/network_segments.html.md diff --git a/docs/data-sources/nodes.html.markdown b/docs/data-sources/nodes.html.md similarity index 100% rename from docs/data-sources/nodes.html.markdown rename to docs/data-sources/nodes.html.md diff --git a/docs/data-sources/service.html.markdown b/docs/data-sources/service.html.md similarity index 100% rename from docs/data-sources/service.html.markdown rename to docs/data-sources/service.html.md diff --git a/docs/data-sources/service_health.html.markdown b/docs/data-sources/service_health.html.md similarity index 100% rename from docs/data-sources/service_health.html.markdown rename to docs/data-sources/service_health.html.md diff --git a/docs/data-sources/services.html.markdown b/docs/data-sources/services.html.md similarity index 100% rename from docs/data-sources/services.html.markdown rename to docs/data-sources/services.html.md diff --git a/docs/guides/upgrading.html.markdown b/docs/guides/upgrading.html.md similarity index 100% rename from docs/guides/upgrading.html.markdown rename to docs/guides/upgrading.html.md diff --git a/docs/index.md b/docs/index.md index 69e145c7..e52f0913 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,42 +1,92 @@ --- -# generated by https://github.com/hashicorp/terraform-plugin-docs -page_title: "consul Provider" -subcategory: "" +layout: "consul" +page_title: "Provider: Consul" +sidebar_current: "docs-consul-index" description: |- - + Consul is a tool for service discovery, configuration and orchestration. The Consul provider exposes resources used to interact with a Consul cluster. Configuration of the provider is optional, as it provides defaults for all arguments. --- -# consul Provider +# Consul Provider +[Consul](https://www.consul.io) is a service networking platform which provides +service discovery, service mesh, and application configuration capabilities. +The Consul provider exposes resources used to interact with a +Consul cluster. Configuration of the provider is optional, as it provides +reasonable defaults for all arguments. +Use the navigation to the left to read about the available resources. +~> **NOTE:** The Consul provider should not be confused with the [Consul remote +state backend][consul-remote-state-backend], which is one of many backends that +can be used to store Terraform state. The Consul provider is instead used to +manage resources within Consul itself, such as adding external services or +working with the key/value store. +[consul-remote-state-backend]: /docs/backends/types/consul.html - -## Schema +## Example Usage -### Optional +```hcl +# Configure the Consul provider +provider "consul" { + address = "demo.consul.io:80" + datacenter = "nyc1" +} -- `address` (String) -- `ca_file` (String) -- `ca_path` (String) -- `ca_pem` (String) -- `cert_file` (String) -- `cert_pem` (String) -- `datacenter` (String) -- `header` (Block List) Additional headers to send with each Consul request. (see [below for nested schema](#nestedblock--header)) -- `http_auth` (String) -- `insecure_https` (Boolean) -- `key_file` (String) -- `key_pem` (String) -- `namespace` (String) -- `scheme` (String) -- `token` (String, Sensitive) +# Access a key in Consul +data "consul_keys" "app" { + key { + name = "ami" + path = "service/app/launch_ami" + default = "ami-1234" + } +} - -### Nested Schema for `header` +# Use our variable from Consul +resource "aws_instance" "app" { + ami = data.consul_keys.app.var.ami +} +``` -Required: +## Compatibility -- `name` (String) The header name -- `value` (String) The header value +The Consul Terraform provider uses features of the latest version of Consul. +Some resources may not be supported by older versions of Consul. + +The known compatibility between this provider and Consul is: + +| Terraform provider version | Consul version | +| -------------------------- | -------------- | +| 2.15.0 | >= 1.11.0 | +| 2.14.0 | >= 1.10.0 | +| 2.13.0 | >= 1.10.0 | + +## Argument Reference + +The following arguments are supported: + +* `address` - (Optional) The HTTP(S) API address of the agent to use. Defaults to "127.0.0.1:8500". +* `scheme` - (Optional) The URL scheme of the agent to use ("http" or "https"). Defaults to "http". +* `http_auth` - (Optional) HTTP Basic Authentication credentials to be used when communicating with Consul, in the format of either `user` or `user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable. +* `datacenter` - (Optional) The datacenter to use. Defaults to that of the agent. +* `token` - (Optional) The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or `CONSUL_TOKEN` as an environment variable. +* `ca_file` - (Optional) A path to a PEM-encoded certificate authority used to verify the remote agent's certificate. +* `ca_pem` - (Optional) PEM-encoded certificate authority used to verify the remote agent's certificate. +* `cert_file` - (Optional) A path to a PEM-encoded certificate provided to the remote agent; requires use of `key_file` or `key_pem`. +* `cert_pem` - (Optional) PEM-encoded certificate provided to the remote agent; requires use of `key_file` or `key_pem`. +* `key_file`- (Optional) A path to a PEM-encoded private key, required if `cert_file` or `cert_pem` is specified. +* `key_pem`- (Optional) PEM-encoded private key, required if `cert_file` or `cert_pem` is specified. +* `ca_path` - (Optional) A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server connections. Can also be specified with the `CONSUL_CAPATH` environment variable. +* `insecure_https`- (Optional) Boolean value to disable SSL certificate verification; setting this value to true is not recommended for production use. Only use this with scheme set to "https". +* `header` - (Optional) A configuration block, described below, that provides additional headers to be sent along with all requests to the Consul server. This block can be specified multiple times. + +The `header` configuration block accepts the following arguments: + + * `name` - (Required) The name of the header. + + * `value` - (Required) The value of the header. + +## Environment Variables + +All environment variables listed in the [Consul environment variables](https://www.consul.io/docs/commands/index.html#environment-variables) +documentation are supported by the Terraform provider. diff --git a/docs/resources/acl_auth_method.markdown b/docs/resources/acl_auth_method.md similarity index 100% rename from docs/resources/acl_auth_method.markdown rename to docs/resources/acl_auth_method.md diff --git a/docs/resources/acl_binding_rule.markdown b/docs/resources/acl_binding_rule.md similarity index 100% rename from docs/resources/acl_binding_rule.markdown rename to docs/resources/acl_binding_rule.md diff --git a/docs/resources/acl_policy.html.markdown b/docs/resources/acl_policy.html.md similarity index 100% rename from docs/resources/acl_policy.html.markdown rename to docs/resources/acl_policy.html.md diff --git a/docs/resources/acl_role.markdown b/docs/resources/acl_role.md similarity index 100% rename from docs/resources/acl_role.markdown rename to docs/resources/acl_role.md diff --git a/docs/resources/acl_token.html.markdown b/docs/resources/acl_token.html.md similarity index 100% rename from docs/resources/acl_token.html.markdown rename to docs/resources/acl_token.html.md diff --git a/docs/resources/acl_token_policy_attachment.html.markdown b/docs/resources/acl_token_policy_attachment.html.md similarity index 100% rename from docs/resources/acl_token_policy_attachment.html.markdown rename to docs/resources/acl_token_policy_attachment.html.md diff --git a/docs/resources/acl_token_role_attachment.html.markdown b/docs/resources/acl_token_role_attachment.html.md similarity index 100% rename from docs/resources/acl_token_role_attachment.html.markdown rename to docs/resources/acl_token_role_attachment.html.md diff --git a/docs/resources/admin_partition.markdown b/docs/resources/admin_partition.md similarity index 100% rename from docs/resources/admin_partition.markdown rename to docs/resources/admin_partition.md diff --git a/docs/resources/agent_service.html.markdown b/docs/resources/agent_service.html.md similarity index 100% rename from docs/resources/agent_service.html.markdown rename to docs/resources/agent_service.html.md diff --git a/docs/resources/autopilot_config.html.markdown b/docs/resources/autopilot_config.html.md similarity index 100% rename from docs/resources/autopilot_config.html.markdown rename to docs/resources/autopilot_config.html.md diff --git a/docs/resources/catalog_entry.html.markdown b/docs/resources/catalog_entry.html.md similarity index 100% rename from docs/resources/catalog_entry.html.markdown rename to docs/resources/catalog_entry.html.md diff --git a/docs/resources/certificate_authority.html.markdown b/docs/resources/certificate_authority.html.md similarity index 100% rename from docs/resources/certificate_authority.html.markdown rename to docs/resources/certificate_authority.html.md diff --git a/docs/resources/config_entry.markdown b/docs/resources/config_entry.md similarity index 100% rename from docs/resources/config_entry.markdown rename to docs/resources/config_entry.md diff --git a/docs/resources/intention.html.markdown b/docs/resources/intention.html.md similarity index 100% rename from docs/resources/intention.html.markdown rename to docs/resources/intention.html.md diff --git a/docs/resources/key_prefix.html.markdown b/docs/resources/key_prefix.html.md similarity index 100% rename from docs/resources/key_prefix.html.markdown rename to docs/resources/key_prefix.html.md diff --git a/docs/resources/keys.html.markdown b/docs/resources/keys.html.md similarity index 100% rename from docs/resources/keys.html.markdown rename to docs/resources/keys.html.md diff --git a/docs/resources/license.markdown b/docs/resources/license.md similarity index 100% rename from docs/resources/license.markdown rename to docs/resources/license.md diff --git a/docs/resources/namespace.markdown b/docs/resources/namespace.md similarity index 100% rename from docs/resources/namespace.markdown rename to docs/resources/namespace.md diff --git a/docs/resources/namespace_policy_attachment.html.markdown b/docs/resources/namespace_policy_attachment.html.md similarity index 100% rename from docs/resources/namespace_policy_attachment.html.markdown rename to docs/resources/namespace_policy_attachment.html.md diff --git a/docs/resources/namespace_role_attachment.html.markdown b/docs/resources/namespace_role_attachment.html.md similarity index 100% rename from docs/resources/namespace_role_attachment.html.markdown rename to docs/resources/namespace_role_attachment.html.md diff --git a/docs/resources/network_area.html.markdown b/docs/resources/network_area.html.md similarity index 100% rename from docs/resources/network_area.html.markdown rename to docs/resources/network_area.html.md diff --git a/docs/resources/node.html.markdown b/docs/resources/node.html.md similarity index 100% rename from docs/resources/node.html.markdown rename to docs/resources/node.html.md diff --git a/docs/resources/prepared_query.markdown b/docs/resources/prepared_query.md similarity index 100% rename from docs/resources/prepared_query.markdown rename to docs/resources/prepared_query.md diff --git a/docs/resources/service.html.markdown b/docs/resources/service.html.md similarity index 100% rename from docs/resources/service.html.markdown rename to docs/resources/service.html.md diff --git a/templates/data-sources/acl_auth_method.html.markdown b/templates/data-sources/acl_auth_method.html.md similarity index 100% rename from templates/data-sources/acl_auth_method.html.markdown rename to templates/data-sources/acl_auth_method.html.md diff --git a/templates/data-sources/acl_policy.html.markdown b/templates/data-sources/acl_policy.html.md similarity index 100% rename from templates/data-sources/acl_policy.html.markdown rename to templates/data-sources/acl_policy.html.md diff --git a/templates/data-sources/acl_role.html.markdown b/templates/data-sources/acl_role.html.md similarity index 100% rename from templates/data-sources/acl_role.html.markdown rename to templates/data-sources/acl_role.html.md diff --git a/templates/data-sources/acl_token.html.markdown b/templates/data-sources/acl_token.html.md similarity index 100% rename from templates/data-sources/acl_token.html.markdown rename to templates/data-sources/acl_token.html.md diff --git a/templates/data-sources/acl_token_secret_id.html.markdown b/templates/data-sources/acl_token_secret_id.html.md similarity index 100% rename from templates/data-sources/acl_token_secret_id.html.markdown rename to templates/data-sources/acl_token_secret_id.html.md diff --git a/templates/data-sources/agent_config.html.markdown b/templates/data-sources/agent_config.html.md similarity index 100% rename from templates/data-sources/agent_config.html.markdown rename to templates/data-sources/agent_config.html.md diff --git a/templates/data-sources/agent_self.html.markdown b/templates/data-sources/agent_self.html.md similarity index 100% rename from templates/data-sources/agent_self.html.markdown rename to templates/data-sources/agent_self.html.md diff --git a/templates/data-sources/autopilot_health.html.markdown b/templates/data-sources/autopilot_health.html.md similarity index 100% rename from templates/data-sources/autopilot_health.html.markdown rename to templates/data-sources/autopilot_health.html.md diff --git a/templates/data-sources/datacenters.html.markdown b/templates/data-sources/datacenters.html.md similarity index 100% rename from templates/data-sources/datacenters.html.markdown rename to templates/data-sources/datacenters.html.md diff --git a/templates/data-sources/key_prefix.html.markdown b/templates/data-sources/key_prefix.html.md similarity index 100% rename from templates/data-sources/key_prefix.html.markdown rename to templates/data-sources/key_prefix.html.md diff --git a/templates/data-sources/keys.html.markdown b/templates/data-sources/keys.html.md similarity index 100% rename from templates/data-sources/keys.html.markdown rename to templates/data-sources/keys.html.md diff --git a/templates/data-sources/network_area_members.html.markdown b/templates/data-sources/network_area_members.html.md similarity index 100% rename from templates/data-sources/network_area_members.html.markdown rename to templates/data-sources/network_area_members.html.md diff --git a/templates/data-sources/network_segments.html.markdown b/templates/data-sources/network_segments.html.md similarity index 100% rename from templates/data-sources/network_segments.html.markdown rename to templates/data-sources/network_segments.html.md diff --git a/templates/data-sources/nodes.html.markdown b/templates/data-sources/nodes.html.md similarity index 100% rename from templates/data-sources/nodes.html.markdown rename to templates/data-sources/nodes.html.md diff --git a/templates/data-sources/service.html.markdown b/templates/data-sources/service.html.md similarity index 100% rename from templates/data-sources/service.html.markdown rename to templates/data-sources/service.html.md diff --git a/templates/data-sources/service_health.html.markdown b/templates/data-sources/service_health.html.md similarity index 100% rename from templates/data-sources/service_health.html.markdown rename to templates/data-sources/service_health.html.md diff --git a/templates/data-sources/services.html.markdown b/templates/data-sources/services.html.md similarity index 100% rename from templates/data-sources/services.html.markdown rename to templates/data-sources/services.html.md diff --git a/templates/guides/upgrading.html.markdown b/templates/guides/upgrading.html.md similarity index 100% rename from templates/guides/upgrading.html.markdown rename to templates/guides/upgrading.html.md diff --git a/templates/index.md b/templates/index.md new file mode 100644 index 00000000..e52f0913 --- /dev/null +++ b/templates/index.md @@ -0,0 +1,92 @@ +--- +layout: "consul" +page_title: "Provider: Consul" +sidebar_current: "docs-consul-index" +description: |- + Consul is a tool for service discovery, configuration and orchestration. The Consul provider exposes resources used to interact with a Consul cluster. Configuration of the provider is optional, as it provides defaults for all arguments. +--- + +# Consul Provider + +[Consul](https://www.consul.io) is a service networking platform which provides +service discovery, service mesh, and application configuration capabilities. +The Consul provider exposes resources used to interact with a +Consul cluster. Configuration of the provider is optional, as it provides +reasonable defaults for all arguments. + +Use the navigation to the left to read about the available resources. + +~> **NOTE:** The Consul provider should not be confused with the [Consul remote +state backend][consul-remote-state-backend], which is one of many backends that +can be used to store Terraform state. The Consul provider is instead used to +manage resources within Consul itself, such as adding external services or +working with the key/value store. + +[consul-remote-state-backend]: /docs/backends/types/consul.html + +## Example Usage + +```hcl +# Configure the Consul provider +provider "consul" { + address = "demo.consul.io:80" + datacenter = "nyc1" +} + +# Access a key in Consul +data "consul_keys" "app" { + key { + name = "ami" + path = "service/app/launch_ami" + default = "ami-1234" + } +} + +# Use our variable from Consul +resource "aws_instance" "app" { + ami = data.consul_keys.app.var.ami +} +``` + +## Compatibility + +The Consul Terraform provider uses features of the latest version of Consul. +Some resources may not be supported by older versions of Consul. + +The known compatibility between this provider and Consul is: + +| Terraform provider version | Consul version | +| -------------------------- | -------------- | +| 2.15.0 | >= 1.11.0 | +| 2.14.0 | >= 1.10.0 | +| 2.13.0 | >= 1.10.0 | + +## Argument Reference + +The following arguments are supported: + +* `address` - (Optional) The HTTP(S) API address of the agent to use. Defaults to "127.0.0.1:8500". +* `scheme` - (Optional) The URL scheme of the agent to use ("http" or "https"). Defaults to "http". +* `http_auth` - (Optional) HTTP Basic Authentication credentials to be used when communicating with Consul, in the format of either `user` or `user:pass`. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable. +* `datacenter` - (Optional) The datacenter to use. Defaults to that of the agent. +* `token` - (Optional) The ACL token to use by default when making requests to the agent. Can also be specified with `CONSUL_HTTP_TOKEN` or `CONSUL_TOKEN` as an environment variable. +* `ca_file` - (Optional) A path to a PEM-encoded certificate authority used to verify the remote agent's certificate. +* `ca_pem` - (Optional) PEM-encoded certificate authority used to verify the remote agent's certificate. +* `cert_file` - (Optional) A path to a PEM-encoded certificate provided to the remote agent; requires use of `key_file` or `key_pem`. +* `cert_pem` - (Optional) PEM-encoded certificate provided to the remote agent; requires use of `key_file` or `key_pem`. +* `key_file`- (Optional) A path to a PEM-encoded private key, required if `cert_file` or `cert_pem` is specified. +* `key_pem`- (Optional) PEM-encoded private key, required if `cert_file` or `cert_pem` is specified. +* `ca_path` - (Optional) A path to a directory of PEM-encoded certificate authority files to use to check the authenticity of client and server connections. Can also be specified with the `CONSUL_CAPATH` environment variable. +* `insecure_https`- (Optional) Boolean value to disable SSL certificate verification; setting this value to true is not recommended for production use. Only use this with scheme set to "https". +* `header` - (Optional) A configuration block, described below, that provides additional headers to be sent along with all requests to the Consul server. This block can be specified multiple times. + +The `header` configuration block accepts the following arguments: + + * `name` - (Required) The name of the header. + + * `value` - (Required) The value of the header. + +## Environment Variables + +All environment variables listed in the [Consul environment variables](https://www.consul.io/docs/commands/index.html#environment-variables) +documentation are supported by the Terraform provider. diff --git a/templates/resources/acl_auth_method.markdown b/templates/resources/acl_auth_method.md similarity index 100% rename from templates/resources/acl_auth_method.markdown rename to templates/resources/acl_auth_method.md diff --git a/templates/resources/acl_binding_rule.markdown b/templates/resources/acl_binding_rule.md similarity index 100% rename from templates/resources/acl_binding_rule.markdown rename to templates/resources/acl_binding_rule.md diff --git a/templates/resources/acl_policy.html.markdown b/templates/resources/acl_policy.html.md similarity index 100% rename from templates/resources/acl_policy.html.markdown rename to templates/resources/acl_policy.html.md diff --git a/templates/resources/acl_role.markdown b/templates/resources/acl_role.md similarity index 100% rename from templates/resources/acl_role.markdown rename to templates/resources/acl_role.md diff --git a/templates/resources/acl_token.html.markdown b/templates/resources/acl_token.html.md similarity index 100% rename from templates/resources/acl_token.html.markdown rename to templates/resources/acl_token.html.md diff --git a/templates/resources/acl_token_policy_attachment.html.markdown b/templates/resources/acl_token_policy_attachment.html.md similarity index 100% rename from templates/resources/acl_token_policy_attachment.html.markdown rename to templates/resources/acl_token_policy_attachment.html.md diff --git a/templates/resources/acl_token_role_attachment.html.markdown b/templates/resources/acl_token_role_attachment.html.md similarity index 100% rename from templates/resources/acl_token_role_attachment.html.markdown rename to templates/resources/acl_token_role_attachment.html.md diff --git a/templates/resources/admin_partition.markdown b/templates/resources/admin_partition.md similarity index 100% rename from templates/resources/admin_partition.markdown rename to templates/resources/admin_partition.md diff --git a/templates/resources/agent_service.html.markdown b/templates/resources/agent_service.html.md similarity index 100% rename from templates/resources/agent_service.html.markdown rename to templates/resources/agent_service.html.md diff --git a/templates/resources/autopilot_config.html.markdown b/templates/resources/autopilot_config.html.md similarity index 100% rename from templates/resources/autopilot_config.html.markdown rename to templates/resources/autopilot_config.html.md diff --git a/templates/resources/catalog_entry.html.markdown b/templates/resources/catalog_entry.html.md similarity index 100% rename from templates/resources/catalog_entry.html.markdown rename to templates/resources/catalog_entry.html.md diff --git a/templates/resources/certificate_authority.html.markdown b/templates/resources/certificate_authority.html.md similarity index 100% rename from templates/resources/certificate_authority.html.markdown rename to templates/resources/certificate_authority.html.md diff --git a/templates/resources/config_entry.markdown b/templates/resources/config_entry.md similarity index 100% rename from templates/resources/config_entry.markdown rename to templates/resources/config_entry.md diff --git a/templates/resources/intention.html.markdown b/templates/resources/intention.html.md similarity index 100% rename from templates/resources/intention.html.markdown rename to templates/resources/intention.html.md diff --git a/templates/resources/key_prefix.html.markdown b/templates/resources/key_prefix.html.md similarity index 100% rename from templates/resources/key_prefix.html.markdown rename to templates/resources/key_prefix.html.md diff --git a/templates/resources/keys.html.markdown b/templates/resources/keys.html.md similarity index 100% rename from templates/resources/keys.html.markdown rename to templates/resources/keys.html.md diff --git a/templates/resources/license.markdown b/templates/resources/license.md similarity index 100% rename from templates/resources/license.markdown rename to templates/resources/license.md diff --git a/templates/resources/namespace.markdown b/templates/resources/namespace.md similarity index 100% rename from templates/resources/namespace.markdown rename to templates/resources/namespace.md diff --git a/templates/resources/namespace_policy_attachment.html.markdown b/templates/resources/namespace_policy_attachment.html.md similarity index 100% rename from templates/resources/namespace_policy_attachment.html.markdown rename to templates/resources/namespace_policy_attachment.html.md diff --git a/templates/resources/namespace_role_attachment.html.markdown b/templates/resources/namespace_role_attachment.html.md similarity index 100% rename from templates/resources/namespace_role_attachment.html.markdown rename to templates/resources/namespace_role_attachment.html.md diff --git a/templates/resources/network_area.html.markdown b/templates/resources/network_area.html.md similarity index 100% rename from templates/resources/network_area.html.markdown rename to templates/resources/network_area.html.md diff --git a/templates/resources/node.html.markdown b/templates/resources/node.html.md similarity index 100% rename from templates/resources/node.html.markdown rename to templates/resources/node.html.md diff --git a/templates/resources/prepared_query.markdown b/templates/resources/prepared_query.md similarity index 100% rename from templates/resources/prepared_query.markdown rename to templates/resources/prepared_query.md diff --git a/templates/resources/service.html.markdown b/templates/resources/service.html.md similarity index 100% rename from templates/resources/service.html.markdown rename to templates/resources/service.html.md