diff --git a/pkg/provider/aws/create.go b/pkg/provider/aws/create.go index 47318093..d462a08b 100644 --- a/pkg/provider/aws/create.go +++ b/pkg/provider/aws/create.go @@ -322,6 +322,12 @@ func (p *Provider) createEC2Instance(cache *AWS) error { cache.SecurityGroupid, }, SubnetId: aws.String(cache.Subnetid), + TagSpecifications: []types.TagSpecification{ + { + ResourceType: types.ResourceTypeNetworkInterface, + Tags: p.Tags, + }, + }, }, }, KeyName: aws.String(p.Spec.Auth.KeyName),