Thank you for opening an issue. Please provide as much of the following information as relevant to help understand the problem.
Terraform Version
1.0
Affected Resource(s)
confluence_content
Terraform Configuration Files
// connect to Confluence API
provider "confluence" {
site = var.confluence_site
user = var.confluence_user
token = var.confluence_token
}
// make a new wiki page
resource confluence_content "default" {
body = "<p>This page was built with Terraform<p>"
parent = var.confluence_parent_id
space = var.confluence_space
title = "Example Page"
}
Debug Output
Error: 400 Bad Request
POST /wiki/rest/api/content
com.atlassian.confluence.api.service.exceptions.BadRequestException: Error parsing xhtml: Unexpected close tag </xml>; expected </p>.
at [row,col {unknown-source}]: [1,405]
Authorized: false
Valid: true
Successful: false
Thank you for opening an issue. Please provide as much of the following information as relevant to help understand the problem.
Terraform Version
1.0
Affected Resource(s)
Terraform Configuration Files
Debug Output