{% extends 'base.html' %} {% load base_extras %} {% block content %}
{{ object.slug }}| Created by | Created at | {% for state_version in state_versions %}
|---|---|
| {{ state_version.get_created_by_display }} | {{ state_version.created_at }} |
You can use the following configuration block within the terraform block to use Zentral as HTTP state backend:
You can also set a partial configuration:
{% codeexample 'hcl' %} backend "http" { address = "https://{{ fqdn }}{% url 'terraform_api:backend_state' object %}" lock_address = "https://{{ fqdn }}{% url 'terraform_api:backend_lock' object %}" unlock_address = "https://{{ fqdn }}{% url 'terraform_api:backend_lock' object %}" lock_method = "POST" unlock_method = "DELETE" } {% endcodeexample %}The other arguments can be specified via the init command line: