Skip to content

v0.6.0

Compare
Choose a tag to compare
@github-actions github-actions released this 23 Sep 21:18
· 62 commits to master since this release
4a0bbd2

What's Changed

Added

  • [#99] Added the attribute org_id to the resource neon_project to create projects in the organisation.

Fixed

  • [BREAKING] [#96] The boolean attributes of the resource neon_project will be treated as strings to work around the issue with state management when the attribute gets removed from the manifest.

Examples

  • Set allowed_ips to be applicable only to the primary branch:
     resource "neon_project" "this" {
        name = "myproject"
        
        allowed_ips = ["1.2.3.4/24"]
    
        allowed_ips_primary_branch_only = "yes"
     }
  • Set allowed_ips to be applicable to all branches, explicitly:
     resource "neon_project" "this" {
        name = "myproject"
        
        allowed_ips = ["1.2.3.4/24"]
    
        allowed_ips_primary_branch_only = "no"
     }
  • Set allowed_ips to be applicable to all branches, implicitly:
     resource "neon_project" "this" {
        name = "myproject"
        
        allowed_ips = ["1.2.3.4/24"]
     }

Changed

  • Updated dependencies:
    • Neon Go SDK: v0.5.0
    • github.com/hashicorp/terraform-plugin-docs: v0.19.4

Full Changelog: v0.5.0...v0.6.0