Skip to content

Commit

Permalink
chore: run format
Browse files Browse the repository at this point in the history
  • Loading branch information
Maed223 authored and DanielMSchmidt committed Oct 16, 2023
1 parent b9f5782 commit bfa135a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Since the long-term support for Node.js 16 ended on 2023-09-11, we updated our m
### Potential provider naming collision with instance function `moveTo` on `TerraformResource`

We have added support for resource refactoring and renaming with the addition of the instance function `moveTo` on `TerraformResource`. We forsee the potential for naming collision with providers using `moveTo` as an attribute. In instances where provider bindings fail to compile due to the collision, regenerate your provider bindings and replace the provider related usage of `moveTo` to `moveToAttribute` in your configuration if applicable.

### Java: `codeMakerOutput` needs to be set to a company identifier

We did not honor the `codeMakerOutput` setting in the `cdktf.json` previously, this is fixed now.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import { AttributeTypeModel } from "./attribute-type-model";
export type GetterType =
| { _type: "plain" }
| {
_type: "args";
args: string;
returnType?: string;
returnStatement: string;
}
_type: "args";
args: string;
returnType?: string;
returnStatement: string;
}
| {
_type: "stored_class";
};
_type: "stored_class";
};

export type SetterType =
| { _type: "none" }
Expand Down Expand Up @@ -144,8 +144,9 @@ export class AttributeModel {

return {
_type: "set",
type: `${this.type.inputTypeDefinition}${this.isProvider ? " | undefined" : ""
}`,
type: `${this.type.inputTypeDefinition}${
this.isProvider ? " | undefined" : ""
}`,
};
}

Expand Down

0 comments on commit bfa135a

Please sign in to comment.